I have looked at the CSS and searched the site, but i cant find a way to set the width for this theme.
It does not look so nice on a 22inch screen.
Hope someone can guide me here..

Comments

Weirdo_44’s picture

You'll need to open the style.css sheet and adjust the following:

body {
margin:10px auto;
padding:0 15px 0 10px;
width: 760px;
}

With the margin, you specify that the body should float always in the center of the screen and you set the width. So when your screen is set smaller, your div's don't change position.