Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Change EZ page contet text font size

Change EZ page contet text font size

Locked

Views: 1,349

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
14 Dec 2009, 4:08 AM
#1
cdhi2002 avatar

cdhi2002

New Zenner

Join Date:
Nov 2009
Posts:
16
Plugin Contributions:
0

Change EZ page contet text font size

Hello All,

I want to change EZ page contet text font size, it's too small (http://heidimart.com//index.php?main_page=page&id=4). But after several hours research, I couldn't find the answer.

Is there anyone know?

Thanks

14 Dec 2009, 10:37 AM
#2
jcdk avatar

jcdk

Zen Follower

Join Date:
Oct 2009
Location:
Netherlands - NB
Posts:
144
Plugin Contributions:
0

Re: Change EZ page contet text font size

I guess it uses the standard font style in stylesheet.css

body {
margin: 0;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 0.7em;
color: #795252;
background-color: #9B7969;
padding: 10px;
}

Around line 20 in your stylesheet

Hope it works

14 Dec 2009, 8:31 PM
#3
cdhi2002 avatar

cdhi2002

New Zenner

Join Date:
Nov 2009
Posts:
16
Plugin Contributions:
0

Re: Change EZ page contet text font size

jcdk, thank you.

I tried your way, but all font size changed. I want to only change the EZ page content font size.

Is there any way?

Thanks

18 Dec 2009, 9:35 AM
#4
jcdk avatar

jcdk

Zen Follower

Join Date:
Oct 2009
Location:
Netherlands - NB
Posts:
144
Plugin Contributions:
0

Re: Change EZ page contet text font size

Then I think you should create a new div class for this page and link it to your stylesheet

<div class="example">

Your ez page information

</div>

And in your stylesheet

.example {

font-family: whatever

}