• Resolved sbhedges

    (@sbhedges)


    Hello all,

    I’m hoping to learn how to design website templates for wordpress and I had been working on a simple custom design so I could work out how everything works.

    I got everything setup and it works almost perfectly except for the sidebar!

    as you can see :
    http://website.usefuldesign.co.uk/wordpress/

    The sidebar just falls to the bottom of the page.

    Is there any particular thing that might be causing this, i’ve checked my <div> tags and they are all in order, so why ??

    Many Thanks,
    Stephen

Viewing 2 replies - 1 through 2 (of 2 total)
  • Actually our DIV’s are not OK,
    you need to set up a ‘content’ div and within two separate div’s like: entries and sidebar >>

    <div id=”content”>
    <div id=”entry”>
    </div>
    <div id=”sidebar”>
    </div>
    </div>

    and then with CSS >>>

    #content {width:800px; clear:both;}
    #entry {width:600px; float:left;}
    #sidebar{width:200px; float:right;}

    Thread Starter sbhedges

    (@sbhedges)

    Thank you very much for your help.

    I now see where i went wrong and have fixed it!

    Many thanks.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Sidebar’ is closed to new replies.