I'm trying to make my news layout with CSS. Here's the properties for the news boxes layout.
However, when I show the news, the box border around the news item does not show, and the date prints in the wrong color (it should be black, but it shows white). Is there something I'm missing here?PHP Code:#newsbox {
width:95%;
float:left;
text-align:left;
border:1px #006600;
}
#newstitle {
width:100%;
float:left;
text-align:left;
background-color:#006600;
font-size:14px;
font-weight:bold;
}
#newsdate {
width:100%;
float:left;
text-align:left;
background-color:#C0C0C0;
font-size:9px;
font-color:#000000;
}
#newstext {
width:100%;
float:left;
text-align:left;
}
You can see what I mean: Opening 1/1
All other parts of the layout work just peachy. Thanks in advance.






Bookmarks