Announcement

Collapse
No announcement yet.

Card Logos next to payment selection box

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

    Card Logos next to payment selection box

    Hi,

    Hope you can help. How can i add a graphic next to the payment selection drop down box? Do i need to add something to checkout page 3 in design mode

    Thanks again for your help

    #2
    The payment drop down box is on Checkout Page 2 IIRC - but yes you can add you image under or next to the dropdown in design mode.

    You could do this for example...
    Find this by clicking on the Payment Method Selection:
    Code:
    <tr>
       <td>
          <actinic:block if="%3cactinic%3avariable%20name%3d%22PaymentPrompt000Required%22%20%2f%3e"><span class="actrequired"></actinic:block>   
             <Actinic:Variable Name="PaymentPrompt000"/>
          <actinic:block if="%3cactinic%3avariable%20name%3d%22PaymentPrompt000Required%22%20%2f%3e">*</span></actinic:block>
       </td>
       <td><Actinic:Variable Name="PaymentMethodOptions"/></td>
    </tr>
    Then replace it with something like this: (Note - change the image file name etc to suit)
    Code:
    <tr>
       <td>
          <actinic:block if="%3cactinic%3avariable%20name%3d%22PaymentPrompt000Required%22%20%2f%3e"><span class="actrequired"></actinic:block>   
             <Actinic:Variable Name="PaymentPrompt000"/>
          <actinic:block if="%3cactinic%3avariable%20name%3d%22PaymentPrompt000Required%22%20%2f%3e">*</span></actinic:block>
       </td>
       <td><Actinic:Variable Name="PaymentMethodOptions"/></td>
       <td><img src="MyImage.jpg" alt="MyImageAltText" Title="MyImageTitletext" border="0"></td>
    </tr>
    Refer to attachment.
    Attached Files

    Comment


      #3
      First of all create the image, then produce the html to show it and then as you say, its just a case of adding it where you want it to show. Best way to do that is select the page on design view, click where you want it to show and insert the code. What have you managed so far?

      Comment


        #4
        Thanks for your help.

        I'm looking after the site for someone else so my Actinic skills are a bit basic.

        Thanks again

        Comment

        Working...
        X