6
loom001:
We all started by asking questions, so don't worry. The selector I mentioned says:
td#mainmenu a.menuSub
{
padding-left: 9px;
border-right: 1px solid #666666;
border-bottom: 1px solid#666666;
border-left: 1px solid silver;
}
Since it doesn't include any reference to fonts, font colors or sizes, they are inherited from other selectors, but it doesn't mean you have to accept them. You can easily change the selector to something like (I added the values shown in red brick):
td#mainmenu a.menuSub
{
[color=990000]
font-family: Georgia, Times New Roman, serif;
color: #cccccc;
background-color: #efefef;[/color]
padding-left: 9px;
border-right: 1px solid #666666;
border-bottom: 1px solid#666666;
border-left: 1px solid silver;
}
or to whatever values you need.
Cheers.