I like the one called Toni but it leaves a big white space on the right side is there a way to alter this so its more centered?
Dana,
Are you using Toni on your site right now? If so, could you supply a link? It’s likely that some CSS changes may all that is necessary.
I was but didnt like the space Ill put it back up and post the link π
http://www.demerchantfamily.com/patches/
I tried an experiment I changed my screen resolution from 1024 x 768 to 800x 600 and it looked fine , how could it be made to display right in both resolutions?
Dana,
Try this:
#rap {
margin: 0 auto;
padding: 0;
width: 740px;
}
Craig.
For compatibiltiy w/ IE 5.x, you might also need to add:
body { text-align: center; }
not to be stupid but where do I put this , in the CSS? and if so does it matter where?
#rap {
margin: 0 auto;
padding: 0;
width: 740px;
}
and this to?
{ text-align: center; }
Dana,
As I recall, you already have
#rap {
padding: 0;
}
so you can just add the extra stuff in there.
The line that Alex refers to you can add into your body selector, which you already have, too. All of this good stuff is found in your wp-layout.css file.
Craig.
The design that Dana wanted to modify already had a fixed width of 740px. The issue has been discussed ad naseum elsewhere.