Announcement

Collapse
No announcement yet.

Need Help Editing a Fragment Title Image

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

    Need Help Editing a Fragment Title Image

    I need help editing the images used for Fragment Titles on my product pages. Unfortunately the full title does not appear in this image I believe the width is set to a certain length and I need to find where to change it! I have looked up the img source /acatalog/itext.php?class=h2&text=Light & Smooth but am unsure whether the details of this are in there or set in Actinic.

    Any help or tips would be really appreciated!

    http://www.lttvending.co.uk/acatalog...or_Flavia.html

    Rebecca

    #2
    You are using server side PHP to generate these images on the fly. At the moment the Actinic generated HTML is:

    <img src="/acatalog/itext.php?class=h1&text=Ingredients" alt="Ingredients">

    Amend to be

    <img src="/acatalog/itext.php?class=h1&text=Ingredients" title="Ingredients" alt="Ingredients">

    Note that the above is the generated HTML, you'll have to amend the Fragment layout or Standard Fragment Image layout that you're using.
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      Thanks, I have managed to amend the HTML and am still figuring out how to amend the Fragment Layout.

      Comment


        #4
        Not sure what you mean by "amend the HTML" but you should really be editing Layouts, not directly changing generated HTML.

        Also note that your images are being generated by PHP so you won't know their dimensions in advance (returned image size is based on whatever text you add into the SRC's query string).
        Norman - www.drillpine.biz
        Edinburgh, U K / Bitez, Turkey

        Comment

        Working...
        X