Zen Cart Logo

Text size

Locked

Views: 922

Results 1 to 5 of 5
This thread is locked. New replies are disabled.
18 Mar 2009, 8:16 PM
#1
dingbat1 avatar

dingbat1

New Zenner

Join Date:
Mar 2009
Posts:
8
Plugin Contributions:
0

Text size

I am not sure if this is a question about stylesheets. It is a question about category names.

When a category is created there is a link placed on the main page below the site title and site logo. The font size is very small so my question is: "Where does one change the weight and style of that font"?

The links in question list all products in that category.

18 Mar 2009, 9:01 PM
#2
rstevenson avatar

rstevenson

Totally Zenned

Join Date:
Nov 2006
Location:
Dartmouth, NS Canada
Posts:
2,400
Plugin Contributions:
0

Re: Text size

There's a simple thing to try first. Find and open the file includes/templates/YOUR-TEMPLATE/stylesheet.css

Near the top of that file, find this...

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

Change the red part to a larger percentage, perhaps 75% or even 80%, and save the file to your server. That will increase the base size of all text on the site. Look through your site and see if you like the result.

Once you've got that base size set the way you want it, then you can adjust specific bits of text independantly elsewhere in the stylesheet. For help with that, we'd need a link to your site.

Rob

18 Mar 2009, 9:06 PM
#3
tony_sar avatar

tony_sar

Totally Zenned

Join Date:
Jul 2006
Location:
Montreal, Canada
Posts:
2,276
Plugin Contributions:
0

Re: Text size

if you still using zencart default stylesheet.css , then add this rule to the end of your style

#navCatTabs ul {
font-size:1.5em
}

you can change the font size here or add font styling to this specific area of your page .

19 Mar 2009, 8:32 AM
#4
dingbat1 avatar

dingbat1

New Zenner

Join Date:
Mar 2009
Posts:
8
Plugin Contributions:
0

Re: Text size

Tony,

You are a star. That small piece of code worked just the way that I wanted,

Thanks for your support.

Regards,

The Dingbat:clap:

19 Mar 2009, 8:38 AM
#5
tony_sar avatar

tony_sar

Totally Zenned

Join Date:
Jul 2006
Location:
Montreal, Canada
Posts:
2,276
Plugin Contributions:
0

Re: Text size

you welcome :smile: