Announcement

Collapse
No announcement yet.

Editing H2 (?) tags

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

    Editing H2 (?) tags

    Hi,

    Our website was set up for us by a web design company and are not around anymore – I have since been told that the product headings in pink should be h1 tags which they are not .. see here

    www.4little1s.com/acatalog/Tranquility_baby_roomset_izziwotnot_furniture_uk.html

    Can anyone point me in the right direction to amend this? I assume that there will be a general template for this page layout somewhere that I could edit?? I would like to try and do this for the whole site rather than per page if that makes sense....


    Thanks
    Baby Bedding, Nursery Bedding & Baby Stuff for your little ones...

    #2
    Thanks .. I have amended it to:

    <span h1 class="producttitle"><Actinic:Variable Name="ProductName"/></span></h1>

    (My product layouts are all the same, so hopefully the change applies to all.)

    Silly question .. but how do I know it has worked or not?

    Thanks C
    Baby Bedding, Nursery Bedding & Baby Stuff for your little ones...

    Comment


      #3
      That's invalid HTML. SPAN and H1 are separate tags. Try:

      <h1 class="producttitle><Actinic:Variable Name="ProductName"/></h1>

      The way to know if it's worked is to Preview a page and then View Source of the generated page. Look for your product title and see if your new HTML surrounds it.
      Norman - www.drillpine.biz
      Edinburgh, U K / Bitez, Turkey

      Comment


        #4
        Hi,

        If I use this and remove 'span' from the phrase it all goes horribly wrong and my heading disappears. Do I need a span command also?

        This is how it is reading just now ..

        <tr>
        <td colspan="3"><a name="<Actinic:Variable Name="EncodedProductAnchor"/>"></a><span h1 class="producttitle"><Actinic:Variable Name="ProductName"/></span></h1>
        </tr>

        Thanks ..
        Baby Bedding, Nursery Bedding & Baby Stuff for your little ones...

        Comment


          #5
          Either

          <h1><span class="producttitle"><Actinic:Variable Name="ProductName"/></span></h1>

          Or

          <span class="producttitle"><h1><Actinic:Variable Name="ProductName"/></h1></span>
          Norman - www.drillpine.biz
          Edinburgh, U K / Bitez, Turkey

          Comment


            #6
            Many thanks and really appreciate your help.
            Baby Bedding, Nursery Bedding & Baby Stuff for your little ones...

            Comment

            Working...
            X