php - How to use a background image in Webfolio WordPress theme without breaking CSS header? -


i'm attempting build draft version of website police service of small nation using wordpress , webfolio theme site5.com.

i've encountered problem whereby if select use image background of theme using theme's customization options/wordpress options, black header repeated @ top @ either side of header not display.

now when add background image looks this

enter image description here

i tried reading site5 documentation doesn't have information helps. support forums seem quite inactive why decided ask here.

i've had @ css file , found following:

 * { margin: 0; padding: 0; }   body,html {   font-weight:normal;   font-family:arial, helvetica, sans-serif;   font-size:14px;   color:#333;   background:#efefef url(library/images/bk_body.jpg) repeat-x;   } 

when add background image css still same i'm not sure how wordpress themes implement optional background images. i've attempted fiddle no success, knowledge of css limited.

my question is, possible use background image while maintaining top header bars in demo site? if so, guide me on way how?

edit: i've tried using built in background image options of them have same result.

the black bar background image applied body. coud use multiple backgrounds effect you're after:

body, html {     background-image: url(library/images/bk_body.jpg), url(your_image.jpg);     background-repeat: repeat-x, no-repeat; } 

Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -