How can i put a fixed background image into my webstore... but make it so its only around the tables, so the background isnt shown in any of the sideboxex, or in the middle, just around it all?
Is this question understandable?
How can i put a fixed background image into my webstore... but make it so its only around the tables, so the background isnt shown in any of the sideboxex, or in the middle, just around it all?
Is this question understandable?
Assuming you are using version 1.3.x and something based upon the template_default fileset: Open you stylesheet.css file and
Find the code:
Edit to something like:Code:body { margin: 0; font-family: verdana, arial, helvetica, sans-serif; font-size: 62.5%; color: #000000; background-color: #e5edf5;
Where the image is what you want represented surrounding your site and the above assumes a small patteren image(like 80x80px) that will be repeated to fill the background, It could be altered to display a right & left image or??Code:body { margin: 0; font-family: verdana, arial, helvetica, sans-serif; font-size: 62.5%; color: #000000; background-image: url(../images/your_image_bg.gif); background-repeat: repeat-x; background-color: transparent;
If you are not using the template_default stylesheet or an earlier version post back with details
Zen-Venom Get Bitten
Im using the version you are speaking of, how would i make it so its in a fixed position, im very new with css, were it says repeat-x in your code, would i put fixed?
Try aboveCode:body { margin: 0; font-family: verdana, arial, helvetica, sans-serif; font-size: 62.5%; color: #000000; /*background-color: #CC9999;*/ background-color: transparent; background-image: url("../images/your_image.jpg"); background-repeat: no-repeat; background-position: center; }