• I’ve been trying to learn wordpress and get a theme together for the longest time because I’m new to it. I made a test site before I actually put the time into making a real one. The problem now is that my wordpress sidebar shows up in IE but not in Firefox.I’ve spent forever trying to figure this out and this is staring to get really frustrating trying to figure out all this stuff. If anyone can help, it would be greatly appreciated

    Here is my css style sheet:
    [long code moderated – use http://wordpress.pastebin.ca if need to post code]

Viewing 4 replies - 1 through 4 (of 4 total)
  • You are always going to struggle by using position: absolute for your sidebar.

    Thread Starter evette

    (@evette)

    what should I use or change it to?

    Well some folk think I am very odd in this regard but I always start with my layout. Until it is perfect I just can’t get anything else done. I always use the same system which works for me.

    In the markup I have something like :

    <div id="content">
    Post stuff
    </div>
    
    <div id="sidebar">
    Menu stuff
    </div>
    
    <div class="clear"></div>

    Then in the CSS

    /* Layout */

    #rap {width: 760px}
    #content {width: 540px; float: left}
    #sidebar {width: 220px; float: right}
    .clear {margin: 0; padding: 0; clear: both}

    Thread Starter evette

    (@evette)

    I got it now.. it took forever but thanks bunches!!!!!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘WordPress sidebar works in IE and not in FireFox’ is closed to new replies.