Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / What do i need to change..?

What do i need to change..?

Locked

Views: 1,472

Results 1 to 8 of 8
This thread is locked. New replies are disabled.
27 Jul 2006, 7:19 PM
#1
gatenby avatar

gatenby

New Zenner

Join Date:
Jul 2006
Location:
UK
Posts:
18
Plugin Contributions:
0

What do i need to change..?

On about the Titles in the log in and sign up pages. In IE they are a dark blue (#272547.. which i cant find on the stylesheet!) but in MOzilla they are white, which i want.

Anyone know why? and how i can change this?

This is hte site... http://www.mashiachofficial.co.uk/store/index.php?main_page=login

27 Jul 2006, 9:04 PM
#2
dogfusion avatar

dogfusion

Zen Follower

Join Date:
Jun 2006
Posts:
83
Plugin Contributions:
1

Re: What do i need to change..?

Ok, you're using a modified "Future Zen" template. I don't have a test site, nor that template installed. I think the color code for that is #3300FF, print screen colors aren't exact in photoshop or whatever.. so try to find this CSS code block:

#navMain ul li a, #navSupp ul li a, #navCatTabs ul li a {
text-decoration: none;
padding: 0em 0.5em;
margin: 0;
color: #3300ff;

Change the color to white, I'm not sure why "Mozza" changes text colors and sizes. :wacko:

27 Jul 2006, 9:50 PM
#3
gatenby avatar

gatenby

New Zenner

Join Date:
Jul 2006
Location:
UK
Posts:
18
Plugin Contributions:
0

Re: What do i need to change..?

Thanks for the reply. But this didnt work. I found that in the stylesheet and it was 990000 - a red.

Soo anyone else got any ideas? :down:

28 Jul 2006, 1:45 AM
#4
kobra avatar

kobra

Black Belt

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

Re: What do i need to change..?

This is in your style sheet and this particular item is left to some default and why it renders differently in various browsers, as they each process a bit differently;

To force the color that you want (white), find this code in your stylesheet:

LEGEND {
	font-weight: bold;
	padding: 0.3em;
	}

and add the red hilighted code, save and replace and you should be good to go:

LEGEND {
	font-weight: bold;
        color: #FFFFFF;
	padding: 0.3em;
	}

The other item you might be looking to change is the color of "Forgot Your Password?" and is contained in these 4 conditions, also in the stylesheet.css:

a:link {
	color: #006699;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #006699;
}


a:hover {
	color: #990000;
	}

a:active {
	color: #FFFFFF;
	}

Where #006699 is a shade of blue and the hover color is a red, change the colors to another html value that you prefer.

28 Jul 2006, 2:37 AM
#5
dogfusion avatar

dogfusion

Zen Follower

Join Date:
Jun 2006
Posts:
83
Plugin Contributions:
1

Re: What do i need to change..?

kobra:

This is in your style sheet and this particular item is left to some default and why it renders differently in various browsers, as they each process a bit differently; .
Thanks kobra. I just noticed that mine was screwed too. :blush:

@gatenby.. make sure you assign a color to FIELDSET;

border: 1px solid #FFFFFF;

That will make the outline border match in both browsers. I noticed you removed the color code. :wink2:

29 Jul 2006, 4:01 AM
#6
dbltoe avatar

dbltoe

Totally Zenned

Join Date:
Jan 2004
Location:
N of San Antonio TX
Posts:
9,796
Plugin Contributions:
15

Re: What do i need to change..?

I show an extra line (384) of the stylesheet.css that may have accidentally added a text-decoration call in the IE fix for .cartNewItem.

Also, a syntax error in line 115 of the source code. Don't know if that's the cause for the Parse error when you click on sign up.

Really like the look of the site.:thumbsup:

30 Jul 2006, 10:46 AM
#7
gatenby avatar

gatenby

New Zenner

Join Date:
Jul 2006
Location:
UK
Posts:
18
Plugin Contributions:
0

Re: What do i need to change..?

Thanks for the help people. Really appriciate it. Iv sorted just about everything now! Only bug left is the horizontal scrollbar in IE.

On another note, does anyone know how i can remove the Gift Certificates FAQ from the Information sidebox?! Iv looked and searched everywhere and havnt found a solution.

30 Jul 2006, 11:38 AM
#8
gatenby avatar

gatenby

New Zenner

Join Date:
Jul 2006
Location:
UK
Posts:
18
Plugin Contributions:
0

Re: What do i need to change..?

AH found it! DIdnt look hard enough!! :down: :laugh: