Announcement

Collapse
No announcement yet.

gif file on home page for credit card accepted

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

    gif file on home page for credit card accepted

    I want to add display the credit card logos to the home page. i did a search to see if someone else had done this without any hits. i probably didn't search on the right values.

    thanks in advance...

    Randy

    #2
    If you're looking for images of the credit card types that your site will accept for payments then you would usually get those from your PSP.

    Duncan

    Comment


      #3
      If you say what theme you are using....? I have posted before with code to do this with Smart theme.
      Bill
      www.egyptianwonders.co.uk
      Text directoryWorldwide Actinic(TM) shops
      BC Ness Solutions Support services, custom software
      Registered Microsoft™ Partner (ISV)
      VoIP UK: 0131 208 0605
      Located: Alexandria, EGYPT

      Comment


        #4
        theme = best seller

        you can view the site at: http://trials.actinic.com/trials/trial21473/

        i already have the .gif file ready. i would like for it to appear on the home page.

        thanks

        Comment


          #5
          I would look at adding the images here
          Code:
          <script language=Javascript1.2>
          document.write(YahooSections(section_tree)) 
          </script> </td></tr></table></td></tr><tr> <td width="170" valign="top" bgcolor="#009900"><img src="menu_bottom.gif" width="170" height="91"></td></tr>           add new row(s) here         </table>
          The code you need depends on the number and size of the images, but basically you need a table row <tr> a table cell <td> an image tag for each gif file with alt tags for non-graphic browsers/screen readers and then closing tags for the cell </td> and row </tr> for each row you need to add.
          Example
          Code:
          <tr><td><img src="master.gif" alt="Mastercard"><img src="visa.gif" alt="Visa"></td></tr>
          Bill
          www.egyptianwonders.co.uk
          Text directoryWorldwide Actinic(TM) shops
          BC Ness Solutions Support services, custom software
          Registered Microsoft™ Partner (ISV)
          VoIP UK: 0131 208 0605
          Located: Alexandria, EGYPT

          Comment

          Working...
          X