[EMAIL PROTECTED] wrote:
> .date
> {
> margin-top: 10px;
> margin: 0px;
> padding:  0px;
> font-weight:bold;
> }
>   
G'day,
I think the biggest problem here is that you redefine margin to 0px 
after you declare margin-top as 10px. Having margin: 0px *after* your 
margin-top: 10px line will set margin-top (and all margins for .date) 
back to 0px, which is not what you want to do. By swapping the margin 
and margin-top lines around in your css you *should* see a difference.

______________________________________________________________________
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/

Reply via email to