PDA

View Full Version : Fluid Header Components


Seattle_Mike
05-01-2008, 02:22 PM
I think I understand the very basics on how fluid headers are created by using the one pixel chunk and specifying 100% someplace but that's about it. I was able to customize a skin to get it mostly like I want it but there's a couple of graphic components I don't know what to do to make them fluid. Maybe the entire header file has to be made fluid? Here's a link to our board so you can see the header I would like to make so it's all fluid, not just the black background. http://www.npsaracing.com/forum Any help? I think once I understand how it's done, and where to do it etc., I will be on my way. Thanks in advance...Mike

napy8gen
05-02-2008, 12:52 AM
you only have that big logo there without the bg repeating.
so you may want to check at its Main CSS
style manager> your style name> Main CSS> Additional CSS
#logostrip {
background: #E5E5E5 url(images/metallix/misc/logostrip_bg.gif);
padding: 0;
margin: 0;
height: 113px;
width: 100%
}

check your logostrip bg, is it there ..if its there is it cut properly, I mean it should be just 1-10px width of the right hand end section of your header logo/banner.

and If your logostrip bg is good and still not working change the CSS above to:
#logostrip {
background: #E5E5E5 url(images/metallix/misc/logostrip_bg.gif);
background-repeat:repeat-x; /*added new*/
padding: 0;
margin: 0;
height: 113px;
width: 100%
}