Is it possible to add a background image behind your ZenCart store pages?
IOW, instead of the colored background, AKA wasted space, filler, or edges, I'd like to have my logo or other store related image tiled across the otherwise empty space.
thx
Is it possible to add a background image behind your ZenCart store pages?
IOW, instead of the colored background, AKA wasted space, filler, or edges, I'd like to have my logo or other store related image tiled across the otherwise empty space.
thx
You can do that in includes/templates/YOUR_TEMPLATE/css/stylesheet.css.
This is a sample from the stylesheet from the Fan Odyssey site in my sig.
Code:#mainWrapper { background-color: #000000; background-image: url('../images/space011.jpg'); text-align: left; width: 100%; vertical-align: top; }
Mary Ellen
I came; I saw; I Zenned
Taking over the world... one website at a time
Make sure brain is engaged before putting mouth in gear... or fingers to keyboard.
Holzheimer
Fan Odyssey
Thanks for the help. It worked great.
I have that image in various points in the stylesheet which is why it appears as the background to the entire site. If you need the other locations, let me know, but it shouldn't be too hard to figure out.
Mary Ellen
I came; I saw; I Zenned
Taking over the world... one website at a time
Make sure brain is engaged before putting mouth in gear... or fingers to keyboard.
Holzheimer
Fan Odyssey
If you can spare a minute, I'd love to know the various locations. This is my first attempt at this type of webstore and I am struggling to get over the hump. Thanks in advance.
If you have a fixed width page, or space to the sides of the sidebars, you would want to put that background-image in the body {} rule at the very top of the stylesheet.
Anything that has a class or id tag or an HTML element can have a background-image added to it, so there is not a "list" of places as such.