Active
Project:
Book Review
Version:
4.7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
11 Jan 2007 at 08:38 UTC
Updated:
11 Jan 2007 at 08:38 UTC
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; }