• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

CSS, works in firefox but not IE

ezkim0x

Senior member
http://counselorsclinicalcottage.com/

the CSS stylesheet isn't working in IE.. but works fine in firefox.

is there a different code I have to put in my html files to call the stylesheet to make it work in IE?

this is what I have:

<link rel=stylesheet type=text/css href=styles.css />
 
internet explorer has some of the worst CSS support out of all browsers. The way you are linking to your style sheet is fine, but what you do in the style sheet is what is making IE choke. Check out http://www.w3schools.com/css/css_image_gallery.asp and there abouts, They are generally good at pointing out browser incompatibilities, however, they don't list them all up front 🙁 you have to dig to find them.
 
You might want to change your link as well,
<LINK href="styles.css" rel="stylesheet" type="text/css">

might work better (use the quotes)
 
Ok, last reply, the one that worked.

Get a program called csstidy , it is a commandline program, so you'll run it on your css script like this

csstidy.exe styles.css styles.css

That fixed the problem for me.
 
Back
Top