Transparent background on certain headers (manifest theme)
-
Hello!
I’m changing things around on my site and I’ve run into one problem that I can’t work out how to fix. I’ve made the middle part of the screen transparent, but certain headers (the dates) refuse to co-operate…I’ve experimented on nearly everything in the CSS that has the word ‘background’ in it, but have had no luck.
Does someone know which element I need to be attacking here?
http://annemariesanderson.com/
Big thanks in advance :)The blog I need help with is: (visible only to logged in users)
-
Try adding this code:
h5.post-date {
border-bottom-color: none;
background:none;
}h5 abbr {
background: none;
}…..or……….
h5.post-date {
border-bottom-color: none;
background:transparent;
}h5 abbr {
background: transparent;
} -
Hi Duto – thanks so much – both work!
I also added a margin-bottom so the line wasn’t so close to the date text.
Much better! Thankyou :)
- The topic ‘Transparent background on certain headers (manifest theme)’ is closed to new replies.