Forums

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

Home Forums CSS My Resumé website – IE help please!

  • This topic is empty.
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #34834
    tannercampbell
    Participant

    http://www.how-do-i-find-peace.com/resume

    Chrome – check
    Safari – text looks strange but check
    FireFox – check
    Opera – check

    IE 8, 7, 6 (don’t know about 9) – fuckall.

    I’ve never seen IE screw up a site THIS bad. Then again I suppose it’s me who screwed it up. I don’t know what’s up with the positioning I used on the header … someone mind lending me a hand?

    #89334
    TheDoc
    Member

    It’s probably not liking you positioning everything with floats and margins. Why don’t you just absolutely position those elements instead?

    #89344
    bananablues
    Participant

    Add a top and right positioning value to the #subName, like so:

    #subName {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 70px; /* approx. */
    right: 200px; /* approx. */
    }

    …that “should” work.

    #89352
    bananablues
    Participant

    ;)
    Add to the #subName:

    width: 430px;
    text-align: right;

    Its always best to add to an absolute positioned element at least 2 positioning values (top, right, bottom or left).

    #89380
    allenc
    Participant

    I dont see any issues on IE7…

    #89381
    allenc
    Participant

    I see the overlap is that the issue?

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