I’m currently fighting w/ learning how to use a shopping cart system called eDatCat, and customizing it to a design i have in mind. Unfortunately, I do not have much knowledge of CSS, as I have never needed it much before last week. However, it does seem very useful for this current project so I’m doing my best. One small problem tho. The shopping cart system dynamically generates the html links in the menus, and they seem to have it very well hidden for where I can go in and edit the <a> tag to say <a class=“navigation” … > So, I thought perhaps I could apply a style to a <span> tag that surrounds them, and set up the properties for the links through there. With the help of w3schools.com I came up w/ this lovely piece of code that I was rather proud of:
.links
{
color:#FF6600;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
font-weight:bolder;
}
.links > a:link
{
color:#FF6600;
text-decoration:none;
}
.links > a:visited
{
color:#FF6600;
text-decoration:none;
}
.links > a:active
{
color:#FFFFFF;
text-decoration:none;
}
.links > a:hover
{
color:#FFFFFF;
text-decoration:none;
}
It appears to work in Dreamweaver, and aparently it work nicely in Mozilla, but in IE, it does not work at all Does anyone know of another way I can approach this that might be more IE friendly?