image - Drupal Background Photo -


this site: http://www.rybm.org/

there supposed full background called bg.jpg. displays on local xammp run drupal 7 install, not work on live site.

it declared in styles.css body tag, this: background-image:url('wo77crop.jpg');

any ideas on why display correctly on local install, not server? put image in same folder (css) stylesheet dbeclared on, absolutely wasn't happening because pointing wrong directory. so, image in css folder, along stylesheet.

i'm still wondering if it's not directory issue?

that image pointing http://www.rybm.org/sites/all/themes/skeletontheme/css/bg.jpg use:

background-image: url('bg.jpg'); 

and css file specifying in css directory. without knowing saved image, can't tell path should be. if in images folder @ same level css folder, you'd do:

background-image: url('../images/bg.jpg'); 

Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -