Quote:
Originally Posted by kirinafa
I've been trying to put a picture background where the logo icon, blog title, blog tagline, search box, RSS/Email area. Is this possible?
I tried putting this:
Code:
p { background-image: url(smallPic.jpg); }
Into the "Logo Area: Styling" section in Header. Is this the right place to put this? I thought it would be, but the background is just showing up where the Header Images are (right below in the next box). Could someone help me please?
|
Don't use selector and curly brackets when putting CSS anywhere in the Atahualpa Theme Options - except when you add CSS at HTML/CSS Inserts
Also, all images you reference in CSS that you're adding through the theme options would have to have an absolute path instead of a relative path
HTML Code:
background: url(/wp-content/themes/atahualpa/images/smallPic.jpf);
or wherever you uploaded that image. You can use full, absolute paths as well
HTML Code:
background: url(http://www.yourdomain.com/wp-content/themes/atahualpa/images/smallPic.jpf);