Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / cant find backgroundq

cant find backgroundq

Locked

Views: 1,562

Results 1 to 5 of 5
This thread is locked. New replies are disabled.
27 Jul 2006, 3:56 PM
#1
duffster2004 avatar

duffster2004

New Zenner

Join Date:
Mar 2006
Posts:
89
Plugin Contributions:
0

cant find backgroundq

Hiya,

Im trying to customise my site, and using the Future template hosted on here.

Alot of the background is a blue colour as anyone who has used it knows - but im trying to remove all of these blue backgrounds so I can lie my premade background underneath, ive searched for all of the references to the colour (#E5EDF5) and rmeoved them....

...apart from the one at the top, and in the left and right boxes either side of the site (which i dont need anyway as im implementing a naviagation at the top).

Could anyone tell me as to where these blue colours may be referenced so i could remove them?

Address:

http://www.shopretro.co.uk/sr/index.php?main_page=login

27 Jul 2006, 7:47 PM
#2
cmiller avatar

cmiller

New Zenner

Join Date:
Nov 2005
Posts:
44
Plugin Contributions:
0

Re: cant find backgroundq

In your stylesheet, it should be the 'TABLE.headerNavigation'. Below is what mine has, obviously you will have different hex #'s but.......

TABLE.headerNavigation {
background-color: #009999;
border-right: 1px solid #009999;
border-left: 1px solid #009999;
border-bottom: 1px solid #009999;
width: 775px !important;
}

and also 'TR.footertop':

TR.footertop {
background: #009999;
font-size: 11px;
}

Hopefully this helps you out.

EDIT - sorry, forgot about the part where you said you were using future template......not sure this will be the same, never used that.

28 Jul 2006, 2:15 AM
#3
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: cant find backgroundq

I am assuming that you are talking about the fullscreen background color find this right at the top of your future zen stylesheet.css file:

body {
	margin: 0;
	font-family: verdana, arial, helvetica, sans-serif;
	font-size: 62.5%;
	color: #000000;
	background-color: #e5edf5;
	}

It is the #e5edf5 code that is the powderblue .

You can replace this with your image that you want to use. something like this:

body {
	margin: 0;
	font-family: verdana, arial, helvetica, sans-serif;
	font-size: 62.5%;
	color: #000000;
	background-image:url(../images/your_image.jpg);
	}

The ../images refers to the main image directory in Zen Cart

28 Jul 2006, 2:21 AM
#4
Kim avatar

Kim

Obaa-san

Join Date:
Jun 2003
Location:
West Coast, North America
Posts:
26,607
Plugin Contributions:
0

Re: cant find backgroundq

The ../images refers to the main image directory in Zen Cart

Actually that referrs to the template's image directory. The path is relative to the CSS location.

29 Jul 2006, 5:49 AM
#5
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: cant find backgroundq

I am a bit late getting back to this but thanks for the catch on the location.

Too many posts...So little time...