Keith Vaugh+ 16 Report post Posted July 27, 2011 Hi Folks Is it possible to add some css to create a full width header? (similar to the full width twitter bar i.e the colour background) Share this post Link to post Share on other sites
cmunns 16 Report post Posted July 27, 2011 Yeah you could probably even use the fullwidth sidebar and throw that on top...but generally speaking your question is still vague as far as what your specific need is since a header can be a variety of things. Share this post Link to post Share on other sites
Keith Vaugh+ 16 Report post Posted July 27, 2011 Basically I'd like to achieve something similar to what is at the top of this page, i.e. the colour extends across the browser window. Share this post Link to post Share on other sites
catrina 103 Report post Posted July 28, 2011 Here is sample CSS that might work: HEADERSELECTOR {width: 100%; float: left;} It can be revised further to customize what the header will look like. Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
Keith Vaugh+ 16 Report post Posted July 28, 2011 Thanks Catrina, however it didn't work for me. I'll provide a url a little later, as I thing I have one or two more questions that I will need some assistance with. Thanks Share this post Link to post Share on other sites
kastelic 6 Report post Posted July 28, 2011 You can insert an empty div like [/code] via a hook like pagelines_before_site or pagelines_before_page and then set it like this: [code] .header-bg{ position:absolute; width:100%; height:100px; background: black; z-index:0 } May have to play with the z-index a bit. Share this post Link to post Share on other sites