Larry Lyons wrote:
 > Hi Guys,
 >
 > I'd appreciate it if you could take a couple of minutes and go
 > through this site I've been working on. Any comments appreciated:
 >
 > http://www.surfatas.com/index.cfm

I also missed something else rather obvious regarding your contentSkip 
links and it's blowing up in IE (surprise surprise). You have a mistake 
in your stylesheet in the way you are referencing the links. You 
currently have

#contentSkip {
        color:#FFF;
        background-color:transparent;
        font: normal .025em/.05em Arial, Verdana, Helvetica, sans-serif;
}
#contentSkip a #contentSkip a:hover #contentSkip a:active a:visited{
        color:#FFF;
        background-color:transparent;
        text-decoration:none;
        font: normal .025em/.05em Arial, Verdana, Helvetica, sans-serif;
}

.... which would normally mean "apply this rule to any link inside a 
container with an id of contentSkip" but that's not how your html is 
written. Even if this were correct, you would need a comma separating 
the different rules. Instead, change to the following (and *don't* set 
the fonts so they are so very very tiny).

#contentSkip {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1000;
        background-color:transparent;
        font: normal .7em/1em Arial, Verdana, Helvetica, sans-serif;
}
a#contentSkip:link,
a#contentSkip:visited,
a#contentSkip:hover,
a#contentSkip:active {
        color:#FFF;
        background-color:transparent;
        text-decoration:none;
}

Note the order in which these are specified as it's important. I use 
LoVe/HAte to remember but I'm sure there are other acronyms out there. 
It wont matter here because you have ALL rules styled the same way, but 
it would cause issues where you want the active link to appear different 
to a visited link, for example.

HTH
Mark

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Community/message.cfm/messageid:215938
Subscription: http://www.houseoffusion.com/groups/CF-Community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.5

Reply via email to