Click Here To DONATE! Support the theme development, get more attention and additional benefits based on your donation level. Your forum name will be highlighted.
From the author of Atahualpa, the #1 most downloaded (700,000+) theme @ wordpress.org
#1
Feb 4, 2009, 11:20 AM
tekdiver500ft
7 posts · Feb 2009
knock out for body text
Perhaps I'm stupid... no, wait, yup, I'm stupid. Either way, I cannot for the life of me figure out how to get rid of the background color component of content in the main body. I have my logo as the background, but it is covered by these huge white rectangles with a little text in them. I'd like to make it so I can see the logo instead of these great swathes of white.
#2
Feb 4, 2009, 12:23 PM
Flynn
3,730 posts · Oct 2008
Munich, Germany
My bad... td#middle has a hard coded background color of white in style.css. I'll remove that in 3.2
For now you could add a style via Atahualpa Theme Options -> Center:
HTML Code:
background-color: none;
or inherit or transparent instead of none
#3
Feb 4, 2009, 12:31 PM
tekdiver500ft
7 posts · Feb 2009
Thanks for getting back to me so quickly. That really helps, and fixed it entirely. Is there a reason to use inherit or transparent over none?
Thanks again for your help.
#4
Feb 4, 2009, 12:39 PM
Flynn
3,730 posts · Oct 2008
Munich, Germany
There might be situations where it makes a difference but I couldn't tell which situations those are right now...
Also, often there's not just one right way to do something in CSS. Just like you could use the short background: instead of background-color: (In this case it'd have to be the more specific "background-color" to overwrite the existing "background-color")