Zen Cart Logo

Price font size

Locked

Views: 2,109

Results 1 to 7 of 7
This thread is locked. New replies are disabled.
28 Feb 2010, 1:31 PM
#1
hamid84 avatar

hamid84

Zen Follower

Join Date:
Feb 2007
Location:
Walsall
Posts:
223
Plugin Contributions:
0

Price font size

Hi,

I would like to make the price font size bigger. I have played with css and on line 87, i changed h2 but it changes others as well.

How can i only change the font size of prices?:flex:

28 Feb 2010, 2:09 PM
#2
hamid84 avatar

hamid84

Zen Follower

Join Date:
Feb 2007
Location:
Walsall
Posts:
223
Plugin Contributions:
0

Re: Price font size

hmmmmmmmmmmmmmmmmm

28 Feb 2010, 3:08 PM
#3
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Location:
Lansing, Michigan USA
Posts:
19,793
Plugin Contributions:
2

Re: Price font size

You may have to wait longer than half an hour for a reply.

On what page do you want to make the price font bigger?

28 Feb 2010, 3:32 PM
#4
hamid84 avatar

hamid84

Zen Follower

Join Date:
Feb 2007
Location:
Walsall
Posts:
223
Plugin Contributions:
0

Re: Price font size

Product listing page..

Actually i wrote something different so wanted to edit by saying something lol..

28 Feb 2010, 5:41 PM
#5
bonnit avatar

bonnit

Zen Follower

Join Date:
Jun 2009
Location:
Kent, UK
Posts:
350
Plugin Contributions:
0

Re: Price font size

a link to your site will get you a better and quicker response!!

depending on your template if your h2 it is within a div you should be able to do the following in your css

#divcontainer h2 {css properties}

replace #divcontainer with your div id name (or .divcontainer if it is assigned a class instead) and assign css properties within the brakets to apply to that h2 within that div, alternatively you could edit the php file and assign an id or a class and place it in your override files and apply css values for that new id or class

28 Feb 2010, 6:52 PM
#6
hamid84 avatar

hamid84

Zen Follower

Join Date:
Feb 2007
Location:
Walsall
Posts:
223
Plugin Contributions:
0

Re: Price font size

Its here

28 Feb 2010, 7:14 PM
#7
bonnit avatar

bonnit

Zen Follower

Join Date:
Jun 2009
Location:
Kent, UK
Posts:
350
Plugin Contributions:
0

Re: Price font size

again you need to provide more information if you need help, seeing as you are trying to change a h2 tag i can only presume you are talking about the detailled product page, if this is so my directios above (#divcontainer h2) will work

in your case i would suggest you add a new css rule like this one:

#productGeneral h2{ font-size:15px;}

or whatever additional css rules you need to format the h2 within that div.