Styling own template

I have seen you Html structure, You need to change structure like this..

Follow this structure for you own template file…

<div id="wrapper">
    <div id="header">
        <!-- Here goes the header part -->
    </div>

    <div id="main">
        <!-- Here goes the main content part -->
    </div>

    <div id="sidebar">
        <!-- Here goes the sidebar part --> 
    </div>
</div>