I'm new to html and css my web site display's ok in fire fox but look's a mess in IE?
i some one have a look at
benboom.up.md
and let me know?

Recommended Answers

All 2 Replies

Wow, I looked at your site in both IE and Firefox. Brings back some bad memories. Here is what I do. Copy your current css and rename the copy ie_fixes.css. This sheet will be used to fix Internet Exploder. Here's an example of how to do it:

<link href="default.css" rel="stylesheet" type="text/css" />
<!--[if IE]><style type="text/css">@import "ie_fixes.css";</style><![endif]-->

The first, default.css is a pretty standard way to implement a style sheet. All browsers will read this. The second is only read by IE. All other browsers treat it as a comment and ignore it. IE will read both but will use ie_fixes. You'll have to modify the ie_fixes.css until you get things looking right. Hope it helps!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.