Announcement

Collapse
No announcement yet.

How to change the Title Text Size...?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    How to change the Title Text Size...?

    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

    #2
    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.


    Bikster
    SellerDeck Designs and Responsive Themes

    Comment


      #3
      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;
      }


      Bikster
      SellerDeck Designs and Responsive Themes

      Comment


        #4
        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

        Comment


          #5
          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.


          Bikster
          SellerDeck Designs and Responsive Themes

          Comment


            #6
            Alright thank you very much for all the information
            I think I will be able to figure it out from here.

            Thanks!

            Mark Babineau

            Comment

            Working...
            X