Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Trying to remove bold text

Trying to remove bold text

Views: 1,916

Results 1 to 5 of 5
4 Feb 2011, 7:27 PM
#1
atl2rva avatar

atl2rva

New Zenner

Join Date:
Feb 2010
Posts:
81
Plugin Contributions:
0

Trying to remove bold text

I have the cross sell module installed and can't figure out how to remove the bold text. I am searching my stylesheet but can't find where there is "Bold" associated to any of the tags. Here is one of my pages that have a cross sell.

http://www.proskit.com/crimpers/dies/combo-die-for-rj45-and-catv

5 Feb 2011, 12:07 PM
#2
stevesh avatar

stevesh

Black Belt

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

Re: Trying to remove bold text

If you mean the Compatible Frames text, it's h2. Did you want to remove it, or just make it smaller ? If the former, adding this to the stylesheet should work:

**
#crossSell2 .centerBoxHeading {display:none;}**

Otherwise you could apply a different font size to the same rule.

7 Feb 2011, 2:26 PM
#3
atl2rva avatar

atl2rva

New Zenner

Join Date:
Feb 2010
Posts:
81
Plugin Contributions:
0

Re: Trying to remove bold text

Sorry I think I was a little unclear on what I was trying to do. It is the Bold text of the item name in the Cross Sell module that I am trying to change to non-bold. The page below might be a better reference because it shows both the cross sell and the zen-cart "also purchased" module. I want the cross sell to look like the also purchased.

http://www.proskit.com/crimpers/frames/lunar-series-crimp-frame

Thanks for the reply

7 Feb 2011, 8:35 PM
#4
atl2rva avatar

atl2rva

New Zenner

Join Date:
Feb 2010
Posts:
81
Plugin Contributions:
0

Re: Trying to remove bold text

Apparently I was over thinking this a bit. I resolved by simply adding the following to my stylesheet.

.itemTitle{
font-weight: normal;
font-size: 10px;
}

7 Feb 2011, 8:46 PM
#5
atl2rva avatar

atl2rva

New Zenner

Join Date:
Feb 2010
Posts:
81
Plugin Contributions:
0

Re: Trying to remove bold text

Didn't think that through either. That changed the format of the text on my product listing pages. However, I have fixed it but adding a new <div> tag to my module page and then making the same adjustments to my stylesheet for the new tag.