Additional header to Harmonic theme
-
Hi,
I am using the Harmonic theme. I need to add a fixed banner in the header, above anything else (it is a requirement of the institution I belong to). I tried to modify the header.php and the style.css files, but nothing seems to work. The page is http://www.ecopisco.comThank you!
The blog I need help with is: (visible only to logged in users)
-
Hi pelcanpucp, the WordPress.com forums are for sites hosted on WordPress.com. It looks like yours is hosted on hostgator.com.
For self-hosted sites, you can ask your question on the WordPress.org forums instead.
Anyway, if it’s the black Ecopisco banner that you want fixed, try this.
#masthead { position: fixed; }Make sure it’s after the style listed below. If you want both the header and the footer fixed, you can just change the position to fixed like so:
#masthead, #footer-nav-wrapper { background: #111; position: <strong>fixed</strong>; width: 100%; z-index: 11111; } -
Please ignore – I wasn’t expecting it to display like that! Here’s the correct version:
#masthead, #footer-nav-wrapper { background: #111; position: fixed; width: 100%; z-index: 11111; }
- The topic ‘Additional header to Harmonic theme’ is closed to new replies.