can I get some CSS help please?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Mr Pheer
    So Fucking Banned
    • Dec 2002
    • 22083

    #1

    can I get some CSS help please?

    When I load the page i'm working on in firefox, its looks great... at least on my screen

    http://www.pheermedia.com/work/pdx/

    But when I load it in IE, omg its all fucked up. Why?

    How do I fix it to look the same in both browsers?
  • Fat Panda
    Porn is Dead. Move along.
    • Aug 2006
    • 13296

    #2
    I just looked at in it IE...looks fine to me...

    Comment

    • Mr Pheer
      So Fucking Banned
      • Dec 2002
      • 22083

      #3
      what version of IE?

      when i look in firefox everything is where its supposed to be, but when I look in IE, the text is up higher than where it is supposed to be

      Comment

      • Angry Jew Cat - Banned for Life
        (felis madjewicus)
        • Jul 2006
        • 20368

        #4
        Which version of IE are you on Pheer? and what appears to be the problem?

        Comment

        • psili
          Confirmed User
          • Apr 2003
          • 5526

          #5
          I peeped it in IE6; the bottom right text block jumps up. If that's the browser you're seeing issues with you can either keep tweaking your layout to work with one CSS file or just give up and do the shitty thing and add an IE6 specific css file / tags:

          There's something like the following where you can inline specific shit for certain IE browsers:

          <!--[if lt IE 7]>
          ... hahahaha { width: 666px; }
          <![endif]-->

          or, there's also something about prefixing certain CSS tags with an "_".

          .content {
          width: 520px; /* normal browsers read this */
          _width: 540px; /* IE6 will read this - i think */
          }

          I'm too lazy to research and the above comes from foggy memory, but it might help.
          Your post count means nothing.

          Comment

          • Iron Fist
            Too lazy to set a custom title
            • Dec 2006
            • 23400

            #6
            looks exactly the same in IE 7 and FF... must be fixed
            i like waffles

            Comment

            • GrouchyAdmin
              Now choke yourself!
              • Apr 2006
              • 12085

              #7
              Dean Edwards has a great free CSS markup for most versions of ie. You can google it.. Look for 'IE7.css'

              Comment

              • Mr Pheer
                So Fucking Banned
                • Dec 2002
                • 22083

                #8
                Originally posted by sharphead
                looks exactly the same in IE 7 and FF... must be fixed
                it doesnt on my screen, either on my laptop with vista or my desktop with xp

                in IE, the text parts are like 45 pixels higher than where they should be, on both of my computers

                Comment

                • mattz
                  Confirmed User
                  • Dec 2001
                  • 7697

                  #9
                  yep looks exactly the same in ie7 and firefox

                  Comment

                  • Mr Pheer
                    So Fucking Banned
                    • Dec 2002
                    • 22083

                    #10
                    Originally posted by GrouchyAdmin
                    Dean Edwards has a great free CSS markup for most versions of ie. You can google it.. Look for 'IE7.css'
                    thanks I'm looking into that

                    Comment

                    Working...