i am trying to change the width of the header and the nav bar to be the exact width as of news and product column instead of them being stretched out , centered and with fixed width, any ideas ?
8:19 pm April 15, 2009
icy1
Colorado
Member
posts 2218
2
I would love to figure this out too as my header looks messed up at smaller monitors. I faintly remember a post about it but cannot find it.
11:12 pm April 15, 2009
Market Admin
Admin
posts 4728
3
Ok, here's some quick settings to do what you desire with the header.
Open up your stylesheet for editing (style.css).
1. Add the following attributes to your "#bar" style element
width: 870px; margin: auto;
2. Add the same attributes to your "#nav" style element.
width: 870px; margin: auto;
Save the file, and that should do it.
(FYI: If you still want the header color to extend the entire width of the screen, you'll have to add another style element to the header code itself. That's a little more involved than this method.)