Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi all! We have been experiencing an issue on site where threads have been missing the latest postings. The platform host Vanilla are working on this issue. A workaround that has been used by some is to navigate back a page or two to re-sync the thread and this will then show latest posts. Thanks, Mike.

IE coughing up on my design

  • 04-10-2008 9:18am
    #1
    Registered Users Posts: 73 ✭✭


    Hey all,

    I have a problem with my display code. I've tried figuring out the problem with Firebug Lite, but to no avail. I know I have XHTML validation issues too.

    The site is http://www.irish-sayings.com/

    It's the right-hand sidebar that isn't clickable in IE7. It's like it's covered by a div, but I can't figure it out. :confused:

    Any help much appreciated :)
    Eoin


Comments

  • Registered Users, Registered Users 2 Posts: 6,344 ✭✭✭Thoie


    Try counting your opening and ending <div>s. I don't have a lot of time right now, but by quickly throwing the source into Textpad, I found 29 <div> but only 27 </div>.

    This is where properly planned indentations come into things- helps you spot where you haven't closed something out.


  • Closed Accounts Posts: 9,700 ✭✭✭tricky D


    Neat trick for nesting many divs is comment each closing div.

    E.g.
    <div name="foo">
    stuff
    </div><!-- name=foo -->


  • Registered Users, Registered Users 2 Posts: 6,522 ✭✭✭daymobrew


    tricky D wrote: »
    Neat trick for nesting many divs is comment each closing div.

    E.g.
    <div name="foo">
    stuff
    </div><!-- name=foo -->
    Notepad++ will highlight the opening and closing tag when you move the cursor over one. If the wrong ones are highlighted then you know that you have a problem.


  • Registered Users Posts: 73 ✭✭eoinoc333


    Thanks, it was a missing </div>.

    It's tough to keep track of, because the code is being generated in lots of different functions.


  • Registered Users, Registered Users 2 Posts: 6,344 ✭✭✭Thoie


    eoinoc333 wrote: »
    Thanks, it was a missing </div>.

    It's tough to keep track of, because the code is being generated in lots of different functions.

    That happens. Take a look at things like Textpad and Notepad++ to make life a bit easier. And even if something else is generating some code for you, go back through it in an editor and indent/comment it the way you want it done. It's a bit tedious, but can save you pulling your hair out later :)


  • Advertisement
  • Closed Accounts Posts: 9,700 ✭✭✭tricky D


    daymobrew wrote: »
    Notepad++ will highlight the opening and closing tag when you move the cursor over one. If the wrong ones are highlighted then you know that you have a problem.

    True, true, but adding the comment makes Find-n-Replace easy.


Advertisement