nataliedanger
Member
Posted 8 months ago #
Okay, I'm trying to remove the 5px solid top and bottom border from my header image. I was able to locate the code for them using Firebug, but I can't find it in the CSS anywhere OR in the Atahualpa theme options (believe me, I've looked).
Here's a screenshot of the header w/borders.
Here's a shot of the header w/o borders (removed with firebug).
Here's a shot of what I see in firebug, but can't find in the CSS.
Can anyone point me in the right direction? Keep in mind that I'm a total n00b at CSS and html (to an extent). I know just enough to get by.
Thanks!!
http://wordpress.org/extend/themes/atahualpa/
As this is a complex theme, try asking on http://forum.bytesforall.com/
nataliedanger
Member
Posted 8 months ago #
Thank you so much Esmi! Found the solution right away :)
nataliedanger
Member
Posted 8 months ago #
In case someone else needs the answer, the code is found in Atahualpa Options under "Add HTML/CSS Inserts" under "CSS Inserts". It says:
div#imagecontainer {
border-top: solid; 5px; #000000;
border-bottom: solid; 5px; #000000
}
To fix it, just remove the "solid; 5px; #000000;" part after both border-top and border-bottom.
:)