Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

We have a blog with a sidebar on the left side (as widget) how to move it to the right or how to remove it.The homepage also has a sidebar of the left but it is not the same as blog,we need to remove/shift the sidebar of the blog page only.Please Help

share|improve this question
What have you tried already? Without any code there is no answer possible. – toscho Nov 22 '12 at 6:34

closed as not a real question by Michael, toscho Nov 22 '12 at 12:19

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

You can do this by editing the stylesheet of your website

Go the style.css Press F3 and search for #sidebar (The id depends on the theme you are using)

Ih that you will find something like

Float:left;

Change it to

Float:right;

OR They may have also used stlyes like

margin-left or margin-right

Modify them according to your sites dimesions

Or

else go to the page template which your blog page is using and remove

<?php get_the_sidebar(); ?>
share|improve this answer
Thanks.The sidebar area is build into the widgets page.Is it possible to remove that – asf Nov 22 '12 at 7:34
Can you give me the link to your website so i can help you – vaibhav Nov 22 '12 at 7:57
can you please give your email address or skype id,since i do not want to post the site address here.If you want i can share my email first – asf Nov 22 '12 at 7:58
vaibhavb167@gmail.com – vaibhav Nov 22 '12 at 8:01
send you a mail please check – asf Nov 22 '12 at 8:32
show 2 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.