Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Internet Explorer problem

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #28387
    shiny
    Member

    Hey everyone, im in need of your advice.

    The below URL renders fine in FF, Safari, etc but in Internet Explorer 6 7 8 the sidebar seems to go missing, ive looked at the code for hours and cant figure out what the problem is. It’s really quite annoying. Any help would be appreciated a lot! thanks in advance!

    http://strawberrymilitia.com/port_sm.html

    P.S. go easy on me with the sloppy coding, newbie still :) thanks agian!

    #74668
    John Tanedo
    Member

    Have you tried making individual stylesheets for each ie browser? then use this codes

    <!–[if IE 6]>
    <link rel="stylesheet" type="text/css" href=" yourfile’slocation/ie6.css" />
    <![endif]–>
    <!–[if IE 7]>
    <link rel="stylesheet" type="text/css" href=" yourfile’slocation /ie7.css"/>
    <![endif]–>

    <!–[if IE 8]>
    <link rel="stylesheet" type="text/css" href=" yourfile’slocation /ie8.css"/>
    <![endif]–>

    You must keep in mind that you don’t need to rewrite all your main css codes into the ie stylesheet, instead write the codes that were affected by the bugs when viewed on that specific ie browser. In your case the sidebar is not appearing…

    try tweeking the width and the position of your sidebar… make it relative… heres a link to the css ie bug article

    https://css-tricks.com/ie-css-bugs-thatl … very-time/

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘CSS’ is closed to new topics and replies.