Remove Header Overlay In Digg3
-
I’m editing the CSS of my blog and I can’t figure out how to remove the header overlay(The part that says search, and entries rss.) What do I add in the CSS code, and where(I’m kind of a novice) to remove or replace the overlay.
I want to remove this: http://s1.wp.com/wp-content/themes/pub/digg3/images/bg_header_overlay.png?m=1286669327g
My blog: ringling9.wordpress.comThe blog I need help with is: (visible only to logged in users)
-
The grey band is part of the entire header overlay (the white rounded section. You would have to make a new header overlay image to replace the existing. The following gets rid of the RSS links and the search box.
#syndication, #searchbox { display: none; }This is the existing header overlay image for reference.
http://s1.wp.com/wp-content/themes/pub/digg3/images/bg_header_overlay.png?m=1221156839g -
This is where you would put your new overlay image. I haven’t tried this out since I don’t have an image to use, but it should work.
#header-overlay img { background: url("URL of new headeroverlay") no-repeat scroll 0 0 transparent !important; } -
- The topic ‘Remove Header Overlay In Digg3’ is closed to new replies.