I'm fairly new to web design & CSS, but learning all the time. I'm having a few problems with my website that I just can't figure out. I have designed the site (
http://lagette.net ) on a mac and only have occasional access to a pc so I'm struggling to iron out IE6 problems.
1) On the vertical navigation list on the left, bullet points are showing up in internet explorer 6. In my CSS I have:
.vnav ul, .vnav ul li
{
list-style-type:none;
}
It looks fine in Safari, ie, opera & firefox on mac, but shows unwanted bullet points in ie on windows. Have searched on google, but I can only find references to the opposite problem where you want bullets but they don't show up.
2) I want the links in the main content to be underlined at all times. My navigation links & footer links are set to be underlined when active and hovered over, but not otherwise. At the moment main content links are underlined only when not visited. For visited, hover & active they are all not underlined. I don't know why! The CSS is:
a:link, a:visited, a:hover, a:active
{
text-decoration:underline;
}
This is for all browsers on mac, and ie6 on pc.
Hope this makes sense & hope someone can help!