Jump to content

css template issue with IE


JJBlaha

Recommended Posts

View [url=http://www.summonersonline.com/a/]this page[/url] in firefox.  Then view it in IE.  I want it to work like it does in firefox in IE, but cannot figure out how to do it, any suggestions?

Make sure you resize the window to very large and very small to get what it is supposed to be doing.
Link to comment
Share on other sites

  • 2 weeks later...
Your changes still do not work for pre IE7.  If I use the template I may have the user dowload FF or IE7 before they can view the page, or just wait until IE7 is more prevalent.

As it is now it works in IE7, but not previous versions, and of course FireFox.

As for the technique I had an idea of how to do it and am in the process of expierimenting to get it to work.
Link to comment
Share on other sites

#content simply cannot be:

[code]height:auto;
width:auto;
overflow:auto;[/code]

without a "visibility:" of either - "default, inherit, hidden or visible"; it will never display correctly in IE 5.x, 5.5 or 6.

You also have "overflow:" options of :auto, hidden, visible or scroll.

You should create a new css for just IE styles and use a conditional comment tag so it doesn't blow up in real browsers, yet works in IE's various versions.

<!--[if IE ]>
<link rel="stylesheet" type="text/css" href="/css/ieonly.css" media="screen">
<![endif]-->

You can then use "overflow: scroll".

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.