Quote:
|
I'm trying to stay away from CSS lol; I suck at it.
|
Well, it certainly has its learning curve, but it's really the best way to design websites.
But looking at your stylesheet, there's a pretty simple fix for you. You set the border-color on all your links to be black, like this:
Code:
a {
color: #660000;
text-decoration: none;
font-weight: bold;
border-width: 0;
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
}
Instead, you should try setting the border-color of all images inside of links to be black; that would probably work better.
Here's an example of what I mean:
Code:
a {
color: #660000;
text-decoration: none;
font-weight: bold;
border-width: 0;
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
}
a img {
border-color: #000000;
}
And that works in IE as well. 
|