PDA

View Full Version : mambo \ css question.


neednam
11-11-2005, 09:40 PM
I am trying to put a background image in the header row of the tables for the modules instead of using a background color...

my modified code (which doesn't work)
table.moduletable th {
color : #FFFFFF;
background-image:
url('/templates/mamboleague/images/menu_bg.gif')
background-repeat: repeat -n
border-top : 1px solid #000000;
}

my original code
table.moduletable {
margin :3px 4px 10px 4px;
width : 98%;
border : 1px solid #000000;
}
table.moduletable th {
color : #FFFFFF;
background-color : #000000;
border-top : 1px solid #000000;
}
table.moduletable td {
padding : 1px;

}

Any thoughts or suggestions?

neednam
11-11-2005, 09:45 PM
again nevermind, I removed the 'background-repeat: repeat -n'
and added a ';' to close it off, works great!