Forums

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

Home Forums CSS Line breaks inserted after every hyperlink, only in IE 7/8

  • This topic is empty.
Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #41158
    hrcwebmaster
    Member

    I just took my site live (www.houserepublicans.wa.gov) and it is bumping every single tag to a new line. But only in IE 7 and 8. It looks fine in IE 9, Chrome, Safarai and Firefox. This is throughout the site, with nested in various other elements. I have tried adjusting line-height, which helps the lines from overlapping, but still bumps every tag to the next line. I have also tried display:inline, to which nothing changed at all. I have searched for every single style applied to in my stylesheet that does not play nice with IE 7/8. Still nothing. I am completely frustrated…and would appreciate any help people can provide!!

    #116312
    Watson90
    Member

    @hrcwebmaster

    You have this CSS code in a conditional IE 6/7/8 statement above the head tag, could this be your problem?

    #116313
    hrcwebmaster
    Member

    Ok someone else helped me figure it out. I added display:inline !important; to my a in my stylesheet and now it displays fine.

    #116314
    Watson90
    Member

    Ahh, good good. Glad you found it.

    Don’t forget to mark this case as solved :)

    #116315
    hrcwebmaster
    Member

    Thanks @Watson90, I did try adjusting that with no luck. As you can see above I got it figured out. Thank you for your time!

    #116316
    hrcwebmaster
    Member

    Thank you, I marked it as solved now.

    #116318
    Senff
    Participant

    @hrcwebmaster, that is not the proper solution to the problem.

    The cause of the problem is that you’re not closing your tags properly. Your HEADER is never closed, and neither is your H1 or your #main. While most browsers fix this issue automatically (incorrectly in my opinion), IE7/8 doesn’t and shows things properly, as they are actually coded.

    I’d strongly recommend to comb through your code and make sure all tags are properly closed.

    #118328
    hrcwebmaster
    Member

    Hmm the site is created with templates from a theme, so it wasn’t up to me to close tags. But I just double checked my source code and I see as closed?

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