Thread Starter
VDiaz
(@vdiaz)
I figured it out.
For anyone that needs the info on how to fix this:
1. after you create your new page template, you need to edit the div that controls the width of your main column. Find this line:
<div id=”content”>
2. replace the “content” with “content-no-sidebar” (for this particular instance
3. add the following code to your style.css (change the name, width, etc to suit your needs):
#content-no-sidebar {
width: 900px;
float: left;
margin: 5px;
}
it worked for me!