Announcement

Collapse
No announcement yet.

Can I use Strikethrough text in Actinic

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

    Can I use Strikethrough text in Actinic

    I wish to use strikethrough text within the General full descriptoin of my product. This would show the normal RRP. crossed out. Obviously the price I am selling at will be in the normal "Price" part.

    #2
    Strikethrough Found it! ( However)

    Sorry I found it by playing around with HTML.

    This is what I needed to and have done !

    normal !!< <s>this is strikethrough</s>>!! normal

    However is there a list somewhere where the codes are available to use for the colours, fonts, in particular dingbats and special symbol fonts ??

    Comment


      #3
      Have you tried Google?

      http://www.pemberley.com/janeinfo/latin1.html for symbols

      http://www.w3schools.com/html/html_colors.asp for colors

      Comment


        #4
        You could also automate this somewhat by using a Custom Property (called RRP - which you set for such products) and a bit of JavaScript in the Product Template (or Act_ProductPrice.html) that would display the strikout text only if that custom property was defined.

        E.g:
        Code:
        <script language=JavaScript>
        <!--
        if ( 'CUSTOMVAR:RRP' != '' ) document.write('<s>RRP: CUSTOMVAR:RRP</s>');
        //-->
        </script>
        Norman
        Norman - www.drillpine.biz
        Edinburgh, U K / Bitez, Turkey

        Comment


          #5
          Or to avoid javascript, just create an alternative product template that uses a customvar for the striked through value. (this is what I do).

          Mike
          -----------------------------------------

          First Tackle - Fly Fishing and Game Angling

          -----------------------------------------

          Comment

          Working...
          X