I m having some major problems for example the date text should be 10
pixels
down but it stays in the same place so it seems if it ignoring the
margin-top: 10px; part?
<snip></snip>
}
.date
{
margin-top: 10px;
margin: 0px;
padding: 0px;
font-weight:bold;
}
Hi Ian,
In your date class, the second 'margin' declaration overrides the margin-top
declaration.
Try:
.date {
margin: 10px 0 0 0;
padding: 0;
font-weight: bold;
}
That might help.
Bill
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/