Announcement

Collapse
No announcement yet.

Main product name

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

    Main product name

    I have searched high & low for this but am unable to find it. I have changed many templates without success and am having to revert to the forum.

    I am trying to make the word Panther Range, Puma Range bigger but am not sure which template to use. I have tried all of them with the Actsmall, ActRegular etc but cannot find how to do this, WHich Product template does this screenshot belong to.

    Thnaks

    Andrew
    Attached Files

    #2
    This looks like a Section with a list of links to individual product pages, so you're looking for Act_SectionLine.html. Its this line that generates the name:

    Code:
    <A HREF="NETQUOTEVAR:SECTIONLINK"><B>NETQUOTEVAR:SECTIONNAME</B></A>
    You can wrap a <span> around it to select a CSS class.

    Alan Compton
    www.greenknightgames.co.uk
    Great board games and cards games you won't find in the High Street

    Comment


      #3
      If you are applying CSS you may as well remove the inline emboldening <b></b> tags whilst you are there and set that in the class to help reduce page weight (fractionally)


      Bikster
      SellerDeck Designs and Responsive Themes

      Comment


        #4
        Thanks for both your replys.

        Its a bit above my head. Please can I have some examples as that I know next time.

        Thnaks
        Andrew

        Comment


          #5
          You could replace the line I showed above with:

          <span class="actregular">
          <A HREF="NETQUOTEVAR:SECTIONLINK">NETQUOTEVAR:SECTIONNAME</A>
          </span>

          This causes the CSS class called 'actregular' (defined in the actinic.css file) to be applied to the whole line.
          Notice I've removed the <B> and the </B> as suggested by Jonty

          Alan

          Comment

          Working...
          X