Where’s the link to the look you want? We’ve got a few themes that are fixed width like that, but I haven’t refined them to ensure that they work with WP 2.5.1 and some aren’t widgetized; other than needing the widget code, they should be fine, as they worked okay with 2.3.x. Contact me offlist (see my profile) and I’ll let you have the files to play with if you want. 🙂
Thank you for the fast reply 🙂
I tried editing the Driver Theme found here: http://wordpress.topwpthemes.com/ to use, but if you don’t have any information typed in a blog or posts, the page shrinks. I don’t like that it doesn’t stay at least 600px.
That is the basic look I am going for except for the colors and header image which I was able to change.
If you want to just use this driver theme then all you need to do to make the header image different is change the following code in the stylesheet:
#header {
background:transparent url(images/header.jpg) repeat scroll 0%;
height:290px;
margin:0pt auto;
padding:0pt 0pt 0pt 0px;
width:850px;
}
to
#header {
background:transparent url(images/header.jpg) repeat scroll 0%;
height:400px;
margin:0pt auto;
padding:0pt 0pt 0pt 0px;
width:800px;
}
You will also need to edit a few other things. Find the following code, also in style.css:
#page {
background-color:white;
margin:20px auto;
padding:0pt;
width:850px;
}
change to:
#page {
background-color:white;
margin:20px auto;
padding:0pt;
width:800px;
}
and finally find
.narrowcolumn {
background:#FDFCCA url(images/content-background.jpg) repeat-x scroll 0%;
border:3px solid #9A9923;
display:inline;
float:right;
margin:0pt 15px 0pt 0pt;
padding:10px;
width:535px;
}
and change to:
.narrowcolumn {
background:#FDFCCA url(images/content-background.jpg) repeat-x scroll 0%;
border:3px solid #9A9923;
display:inline;
float:right;
margin:0pt 15px 0pt 0pt;
padding:10px;
width:485px;
}
Hope that helps.