I am having a problem removing the side bar on the contact page... On the site basically, I have 7 pages and open through navigation links.. I have right side bar on each page.. What I want is I need the right side bar to appear in every page except on the contact page.. Is there something I can do with this? Do I need to edit this one on the certain php file on the editor? I will appreciate all your replies.. thanks...
You'll need to add a condition to the file sidebar.php which will check whether the current page is not the one with your contact form. http://codex.wordpress.org/Conditional_Tags
While coding is what I would do I'm sure you would want to do this without coding so use the Visual Widget Logic plugin to hide your sidebar stuff see http://wordpress.org/extend/plugins/widget-logic-visual/
Or you could create a custom page.php like page2.php just don't include/remove <?php get_sidebar(); ?> in there And don't forget to include this at the very top of your new page template: <?php /* Template Name: Page Name here */ ?> PHP: then in creating/editing a page, in right side area in the Page Attributes section, there's a dropdown for Template and select your custom page template.
You have to do a very simple step: Just select full width template for your contact page and you will be done.