
Originally Posted by
francocauter
Hi Cheng
I would like to put a vertical image (150px x 600px) on the right outside the boundaries of the shop possibly in a box. Do you think you can help me to achieve that and how?
Kind Regards
Franco
Yes, you can, Franco.
Open your file stylesheet.css from:
includes/templates/gloss_black/css/
Look out for this line:
Code:
body {
font-family: verdana, arial, helvetica, sans-serif;
font-size: 62.5%;
color: #000000;
background-color: #404040;
/*background-image:url(../images/bg.jpg);*/
}
Change it to:
Code:
body {
font-family: verdana, arial, helvetica, sans-serif;
font-size: 62.5%;
color: #000000;
background-color: #404040;
background-image:url(../images/bg.jpg);
background-repeat: no-repeat;
background-position: right top;
}
bg.jpg will be your vertical image (150px x 600px). Make sure you place the image file at:
include/images/
Regards
Cheng King Xiang