Forums / Templates, Stylesheets, Page Layout / Changing the Font Size

Changing the Font Size

Locked
Results 1 to 5 of 5
This thread is locked. New replies are disabled.
29 Sep 2009, 21:17
#1
autoace avatar

autoace

Totally Zenned

Join Date:
Jun 2009
Posts:
618
Plugin Contributions:
0

Changing the Font Size

I am trying to figure out how to change the font size of all the links. The only sizes that I have been able to change is the categories sidebox.

Please help. Where is it in the stylesheet?

I have the Web Developer tool (Chris Pederick) but I am a newbie and still learning how to use that tool:wacko:

Thank for your help
29 Sep 2009, 21:22
#2
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Posts:
19,793
Plugin Contributions:
2

Re: Changing the Font Size

This should do it (add the red part):

a:link, #navEZPagesTOC ul li a {
color: #3300FF;
text-decoration: none;
font-size:120%;
}

You may have to separate the a:link out into it's own statement.
29 Sep 2009, 21:31
#3
autoace avatar

autoace

Totally Zenned

Join Date:
Jun 2009
Posts:
618
Plugin Contributions:
0

Re: Changing the Font Size

stevesh:

This should do it (add the red part):

a:link, #navEZPagesTOC ul li a {
color: #3300FF;
text-decoration: none;
font-size:120%;
}

You may have to separate the a:link out into it's own statement.


Thank you for such a quick reply - it worked!

Real quick - I just added as you show, what happens if I separate it out as you say?
29 Sep 2009, 21:41
#4
autoace avatar

autoace

Totally Zenned

Join Date:
Jun 2009
Posts:
618
Plugin Contributions:
0

Re: Changing the Font Size

autoace:

Thank you for such a quick reply - it worked!

Real quick - I just added as you show, what happens if I separate it out as you say?


Well correction, it worked but not for all the links :(

But it is a good start, now the rest should be easier :smile:
29 Sep 2009, 22:11
#5
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Posts:
21,876
Plugin Contributions:
6

Re: Changing the Font Size

The generic a:link {} styling will be overridden by any more specific link styling, so you will have to find all cases where an "a" element is included in a selector. Being so short, it's going to be impossible to be very selective in searching the stylesheet for " a" (space-a).