I want to make a page in a wordpress template in which side bars will not come ?? I mean side bars comes in the main index page but in one of the sub page side bar wont come ?? Can anyone tell me how to do this ????
I take it you're using the sidebar as an include as in <?php include(TEMPLATEPATH."/sidebar.php");?> If so then you need to add the include in your other pages that show posts, such as single.php, archive.php, etc
Which theme are you using? Anyways, you can create custom page layouts and choose the one you want whenever you add/edit a page, here's a quick and dirty way to do it: * Go to your theme directory * look for page.php and copy it to custom_page_1.php * edit custom_page_1.php and remove the php code "get_sidebar();" (the code that loads the sidebar) [!] in some themes you will find get_sidebar('something') instead of get_sidebar() * You may also want to remove any surounding html markup You should read this for more info: http://codex.wordpress.org/Pages
WordPress uses a specific structure to load custom themes pages, and you need to modify all of them instep to show on your whole blog site wide pages
thanks for your advise..I have removed the sidebars of the sub page but now the problem is I cant able to increase the width of that sub page ,..now ????
Wordpress themes are different, so we can give you an answer without knowing the theme you are using.
You will have to modify your css file to include new <div>'s that are wider than the normal content area to make up for the lost space from your sidebars not being there.