Announcement

Collapse
No announcement yet.

Populate small table with either X or a tick mark

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

    Populate small table with either X or a tick mark

    I need to show a small table say top row small, med, large
    Next line Red with either ticks or x's to show if in or out of stock. i.e. like noughts and crosses but with ticks instead of zero's

    Any idears on how i show the ticks
    Chris Ashdown

    #2
    You can create 3 images with a tick in each position eg:

    tick - blank - blank
    blank - tick - blank
    blank - blank - tick

    save these as GIFS.

    In the Act_ProductLine.html set up a new CUSTOMVAR eg CUSTOMVAR : SIZECHART (remove spaces)

    Add the new CMV into Actinic under Advanced | Custom Properties

    Then against each product specify the desired GIF image eg size_large.gif

    If some products do not have a size chart you can also specify a blank GIF and set as the global default under Design | Options | Site Defaults .. or may be better to use a new Act_ProductLineSizeChart.html against only those items

    HTH


    Bikster
    SellerDeck Designs and Responsive Themes

    Comment


      #3
      If you don't want to create the images, you could also HTML code:

      Code:
      <input type="checkbox" checked="checked" disabled="disabled" />
      for a tick,

      Code:
      <input type="checkbox" disabled="disabled" />
      for unticked.
      www.gbradley.co.uk
      Web Development, Actinic Patches, Scripts & more

      Comment

      Working...
      X