If your theme does not have a full width page template you can create one by using page.php code and remove the sidebars and make change in style.css for the full width template.
Step 1
Create a Page Template
Open Notepad++ which is free editor if you do not have one search and install on your computer as is very usefull program for editing.
Open page.php file from your theme if you have theme on computer in Notepad++ or
you can copy the code from admin panel by clicking Appreance and Editor and you will see page.php file on right click on it and copy the code and paste in Notepad++ new tab.
On of code you will see Template Name :
We are going change name to Full Width No Sidebars so you should have
<?php
/*
Template Name: Full Width No Sidebars
*/
?>
Step 2
Look for <div id=”container”>
change to
<div id=”container” class=”fullwidth”>
Delete Sidebars
Look for this code in most themes it should at bottom and delete the code.
<?php get_sidebar(); ?>
Save the file as fullwidth.php or any other name you wish and upload the file in themes folder.
Step 3
Add code in style.css
Open style.css in admin panel editor and add the code below in style.css file and save style.css file
.fullwidth #content {
margin: 40px auto;
width: 940px;
margin-top:40px;
}
Note: if your theme is narower you will need to change 940px to fit your width
Now if you create new page and add content and in Page Attribute drop down you will have the new template select that and publish and you will have full width page.
Discover how you can blog like othe successfull bloggers with simple step by step Techniques.