is it possible to have a single background image take the whole page? I have a single jpg that I need to have as a background but right now can't get it to work because everything is split up...
I also need the image to stay where it is even if a user scrolls.. any help would be greatly appreciated
pcoins
2006-09-25 03:10
Hi for V1.3 QC in default.css
/* GLOBAL STYLES */ body, h1, h2, h3, h4, h5, h6, p, form, fieldset, img{margin:0;padding:0;border:0px none; } /* below you can change background and font for all site */ body{padding:15px 0;font-family:Verdana, Helvetica, sans-serif;font-size:10px;text-align:center;background:red;color:#000;} img{margin-bottom:-2px;}
rename background:red;color:#000; to
background-image:url(' add your images URL here')
you can see here a test http://p-gr.info/cart/index.php
Oczywiście że to możliwe. Właśnie tak mam zrobione na http://www.jantar2005.pl/QCfat1.4 Żeby to uzyskać musisz w pliku default.css i right.css w fragmencie:
/* GLOBAL STYLES */ body,h1,h2,h3,h4,h5,h6,p,form,fieldset,img{margin:0;padding:0;border:0} /* below you can change background and font for all site */ body{padding:15px 0;font-family:Verdana, Helvetica, sans-serif;font-size:10px;text-align:center;background-color: #FFFFFF;color:#000;} img{margin-bottom:-2px;}
/* CONTAINER - width and background color of your site */ #container{width:740px;margin:0 auto;text-align:left;padding:0;background:#fff;} #container_print{width:16cm;margin:0 auto;padding:20px;text-align:left;padding-top:0;background:#fff;}
just got another question though, I was able to change the background for the image popups but for some reason there's always a huge white space of at least 200 px in height under the previous and next arrows, any way I can remove that?