|
To widen the template, you need to edit the style.css file in your WordPress Theme to 320 pixels plus maybe a little more, but also narrow the width of your content container column to make up for the extra width.
It's possible to increase the #content's width alone / or changing its margin-left, margin-right, padding-left, padding-right properties, but you have to be very cautious in doing such things.
You should just change 5px at a time and keep refreshing the page and see if it works to your favor ... and by the way, if you see margin: 5px 10px 5px 10px; it means margin-top:5px, margin-right:10px,margin-bottom:5px, margin-left:10px; and if you just see, margin:5px 10px; it also means the same ... same goes with padding;
|