Posted by peterx on January 11, 2007 at 8:38am
1 follower
| Project: | Book Review |
| Version: | 4.7.x-1.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
In the following CSS, font-size normal is not valid.
.bookreview .label2 { font-weight: bold; font-size: normal; float: left; padding-right: 5px; }
.bookreview .content2 { font-weight: normal; font-size: normal; }Replace with medium:
.bookreview .label2 { font-weight: bold; font-size: medium; float: left; padding-right: 5px; }
.bookreview .content2 { font-weight: normal; font-size: medium; }