Quick help is needed

Status
Not open for further replies.

ge0

Active Member
613
2010
37
0
Hi all,

I am just building a wordpress blog,

I have few changes to make but just cnt do it right

2nqru36.png

I want to move the pages to the section where i create that white boxes

And if you see i don't want to lessen the width of fb widget instead i want to increase the width of the sidebar

Plz Help
 
5 comments
you should create a body wrap

<body>
<div id="header">bla bla</div>
<div id="warp">
<div id="wordpress_posts">
<!--content goes here -->
</div> <!-- End of WP Posts -->
<div id="sidebar">
<h2>Facebook Followers</h2>
<ul>
<li>
Facebokk widget code
</li>
</ul>
</div> <!--- End of Sidebar -->
</div> <!-- End of Warp -->
</body>

The CSS style:

#warp {width: 850px; height: auto; margin: 0 auto;}
#wordpress_posts {width: 700px; float: left; top: 0;}
#sidebar {width: 140px; margin-left: 10px; float: right; top:0; }
 
Last edited:
sorry to ask a dump question the above code the html part i have added in main index template that does the trick but it appears way down on the website
Do i need to mention that code somewhere else
any other method i can try since i need the side width to be increase not just for fb widget but for some other things to
 
Status
Not open for further replies.
Back
Top