Results 1 to 2 of 2

Thread: CSS Help

  1. #1
    Join Date
    Feb 2006
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Unhappy CSS Help

    Having Some Issues with CSS
    http://www.eliteonlinedesign.com/dev
    looks good in IE but looks like crap in fire fox?

    Please help.
    evan@eliteonlinedesign.com


  2. #2
    Join Date
    Feb 2006
    Posts
    158
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    I'm not a genius at CSS, but I know a little bit, maybe it can help you. I believe that in IE, if you use absolute positioning the object that was positioned will be something like 25px higher (or lower) than it would be in FF. This may not be what you're looking for, but if it is I think the CSS would look like this:

    Code:
    #object {
         position:absolute;
         left:200px;
         top:200px;
         left:200px !important;
         top:175px !important;
    }
    As you can see, there's two different sets of position. The first 2, left:200, top:200, are positioning for IE. the next 2 are positioning for FF. The FF browser reads the !important; ones and uses those to position, thus resulting in different positioning for IE and FF.

    Hopefully that helps?
    Just remember, I'm not the best at CSS, so my solution may not be the best.

    Good luck.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •