• Hi there.

    I have come across an annoying problem on my website. I have moved the side bar (in my twentyten child theme) from the right to the left. After discovering the negative margins were causing problems I swtiched to using percentages.

    Now I still have a similar problem. In IE my sidebar moves down to where my content ends, but in Firefox the page looks absoloutly fine. I pretty sure that the table on my homepage is well under the maximum width.

    Can anyone help me with this? Im really stuck.

    Thanks in advance.

    https://taptonparkgolfclub.co.uk/wp/

Viewing 8 replies - 1 through 8 (of 8 total)
  • https://validator.w3.org/check?uri=http%3A%2F%2Ftaptonparkgolfclub.co.uk%2Fwp%2F&charset=%28detect+automatically%29&doctype=Inline&ss=1&group=0&user-agent=W3C_Validator%2F1.1#line-1

    you have put the link to your favicon above the doctype…. nothing goes above the doctype, that really pisses IE off

    fix that first, then check the validator again for any errors, such as mismatched tags.

    Thread Starter sted999

    (@sted999)

    Took the favicon out and revalidated. All the errors appearing now are just down to styling on the table which I cant seeing is causing the problem.
    Still not lined the sidebar up correctly. I’ve even tried with just plain text and not a table but it still moves down. I haven’t got a clue what to try next.

    Why cant everyone use Firefox – it would make life much simpler ??

    Have you used firebug addon for firefox? That would allow you to point and explore your css areas to see if you have overlaps

    Thread Starter sted999

    (@sted999)

    Yeah I have Firebug, I also have Web Developers Toolbar. I cant seem to find an overlap anywhere. I know there are loads of these questions online, I’ve looked at all of them but cant seem to find the solution anywhere.

    Is the problem coming from moving the sidebar from the right to the left? Rather than an overlap?

    well…If I was gonna flip the sidebar, here would be my css

    #container {
    	float: right;
    	margin: 0 0 0 240px;
    	width: 100%;
    }
    #content {
    	margin: 0 20px 0 280px;
    }
    #primary,
    #secondary {
    	float: left;
    	overflow: hidden;
    	width: 220px;
    }
    #secondary {
    	clear: left;
    }
    #footer {
    	clear: both;
    	width: 100%;
    }

    to start with…just flipping the floats, and margins….

    Unfortunately I’m at work, with no dev tools available….

    I think your floats, with combination fixed/percentage widths, etc are playing wacky….

    Thread Starter sted999

    (@sted999)

    I tried this code and it cause all sorts of problems in IE and FF. So Ive changed my code to be fixed widths:

    #container { width:835px;
    margin:auto;
    text-align:left;}
    
    #content {width:615px;
    float:right;
    margin:0;
    margin-right:10px; }
    
    #primary,
    #secondary{width:200px;
    float:left;
    margin:0;
    margin-left:10px;
    text-align:left;}
    
    #secondary {
    	clear: left;
    }
    
    #footer {
    	clear: both;
    	width: 100%;
    }

    but this still creates problems.

    Sorry I know there are millions of questions like this on the forums, it just seems no matter what I try it doesnt fix it.

    Hi, i have a somewhat similar problem. I can see my sidebar (which are only widgets)in FF but I cannot see them in IE. Please let me know if you see anything on the right side of my blog: https://www.gerbercoupons.info using internet explorer. I am hoping it is just on my computer.

    Thanks for anyone’s help.

    Lila

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘IE pushing my sidebar down’ is closed to new replies.