View Full Version : How to change the Title Text Size...?
Valley_Litho
09-Aug-2007, 03:31 PM
Hello,
I am having problems figuring out how to change the product title text size..it looks to be set at about 12 and when I go into the layout and double click on "Product Title" a window comes up. In that window it allows me to put it to 16 but it will not execute and show that size on the website.
Any suggestions would be very grateful.
Mark
http://www.valleylitho.com
jont
09-Aug-2007, 03:34 PM
There is most likely a CSS class wrapping the code - switch to design tab - click on the product title and look for the class in place eg class="actsmall" .. you can change this to any size by swapping to the stylesheet (in the drop down "select page type") and changing the size or using say "actregular" or any existing classes in the stylesheet.
jont
09-Aug-2007, 03:36 PM
Edit *
after looking at your site there is no class (just a "strong" so you can add you own eg:
<h2 class="product">ProductName</h2>
and in the stylesheet
h2.product {
font-size: 16px;
font-weight: strong;
}
Valley_Litho
09-Aug-2007, 03:56 PM
Thank you very much for the swift response.
I added those lines to the Style sheet and placed the tag around "Product Name" but it did not change the size. If I double click on "Product Name" a window comes up and where it says "Encoding" next to it says "Leave as is" I tried to change it to see if it made a difference but it changed back..seems like it is write protected
Mark
jont
09-Aug-2007, 04:03 PM
The exact HTML if copying and pasting is
<h2 class="product"><Actinic:Variable Name="ProductName"/></h2>
I never touch the "edit appearance" as use the stylesheet but looking at it I have:
Bold : False
Encoding : Leave as Is
Italic : False
Style : Normal
Underline : False
Condition : True
Selectable : Ture
all other fields left blank
In the actinic stylesheet my exact code is:
h2.product {
font-size: 16px;
font-weight: 900;
margin: 0;
padding: 0px 0px 6px 0px;
color: #005fa2;
}
It will and does work so something is not being implemented correctly. Try placing the styling at the bottom of the stylesheet in case it is being overruled further down the sheet.
Valley_Litho
09-Aug-2007, 04:37 PM
Alright thank you very much for all the information
I think I will be able to figure it out from here.
Thanks!
Mark Babineau
vBulletin® v3.8.4, Copyright ©2000-2012, Jelsoft Enterprises Ltd.