Wordpress help needed

To make the desired changes you will have to make changes in the CSS file. If you can attach the CSS file contents with your reply I will be able to help you.
 
i still need help on this


:-(
 
These two themes have no common stuff except the name,
it is modified Kubrick theme, and won't be so quick fix.
 
I think it would be easier if you picked another theme.

If not you need to make the background image (the white part) wider, after that you should be able to change the #page part in the css to something wider than 760px (which is the current setting).
 
Change your narrowcolumn in the .css file to match theirs...however you need to modify the other containers to fit accordingly.

Code:
.narrowcolumn {
  float: left;
  margin-right: 30px;
  padding: 0;
  width: 720px;
}
 
Change the page to match as well...

Code:
#page {
  background-color: white;
  border: 0 none;
  margin: 20px auto;
  padding: 0;
  width: 1020px;
}

Get firefox and install the firebug addon, shows you all the details...you'll need to change sidebar and footer as well to match.
 
Back
Top