• I’ve customized a theme that works perfectly in Firefox, Safari, Chrome, IE8… But IE7 breaks it.

    The sidebar drops to the bottom and the “search…” in the search box goes way off to the side.

    The shadow at the bottom of posts also shows up above the text.

    It validates, and I can’t figure out what the problem is.

    site:
    motogpreport.com

Viewing 4 replies - 1 through 4 (of 4 total)
  • edited this.

    Thread Starter endervr

    (@endervr)

    It started as the default wp theme.

    Your #sidebar is still inside #page – if you close page div before sidebar, then change sidebar configuration from:

    #sidebar {
    	padding: 15px 0 10px 0;
    	margin-left: 725px;
    	width: 200px;
    	}

    to

    #sidebar {
    	padding: 15px 0 10px 0;
    	float: right;
    	width: 200px;
    	}

    The above should fix page.php but different solution to single.php
    It would have been easier starting from scratch or customizing another theme than default theme ??

    Thread Starter endervr

    (@endervr)

    Got it fixed. Thanks for the help, just had to rewrite a bunch of stuff.

    For sure, I’m starting from scratch next time.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Theme broken in IE’ is closed to new replies.