View Single Post
Old 12-21-2010, 04:39 AM   #1
Bertrand
Zealot
Bertrand began at the beginning.
 
Posts: 124
Karma: 10
Join Date: Dec 2008
Location: France
Device: None
Wrong property in the css file

Hi Luke,

In the default stylesheet, you have something incorrect :
Code:
hr
    {
    width="70%"; <-------
    align: center;
    }
Should be

Code:
hr
    {
    width : 70%; <-------
    align: center;
    }
Bertrand is offline   Reply With Quote