Announcement

Collapse
No announcement yet.

help for newbie

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

    help for newbie

    Hi all, new to this so can someone please help me.

    I am using "smart" theme (Business V7) and am trying to place the credit card logo table below the cart details table on the right hand side of the page. I have uncommented what I think is the appropriate code "<-- -->" but it puts the table on the left hand side under the lefttitle box.

    Can somebody please help me

    Many thanks

    Graham

    P.S. I have a feeling this is the start of some very stupid questions from me until I get more knowledge

    #2
    That is the default position for the cc logo table. To move it, cut the code from its current location and paste back in below the cart details table (like this)
    Code:
          <table width="150" border="0" cellpadding="0" cellspacing="0" >
            <tr> 
              <td height="22" bgcolor="NETQUOTEVAR:PALCOLOR1CSS" background="tab_pal2.gif" class="actsmallheading"><b>&nbsp;&nbsp;CART DETAILS</b></td>
            </tr>
            <tr> 
              <td class="thinred2"><br>
                 <table width="100" border="0" cellspacing="0" cellpadding="0" align="center">
    	      <tr><td valign="bottom"><input type="button" value="Empty Cart" onclick="ClearDetails()" /></td></tr>
    		<tr><td>&nbsp;</td></tr>
                  <tr> 
                    <td> <div align="left"><span class="actxxsmall"> 
                        <script language="JavaScript">
    						document.write("NETQUOTEVAR:CARTCOOKIEITEMS&nbsp;" + getCartItem(3)+"&nbsp;<BR>");
    						document.write("NETQUOTEVAR:CARTCOOKIEVALUE&nbsp;" + getCartItem(1));
    					</script>
                        </span> </div>
                    </td>
                  </tr>
    		<tr><td>&nbsp;</td></tr>
    		<tr><td valign="bottom" align="middle"><img src="g.gif">&nbsp;<a href="NETQUOTEVAR:NAVBCARTLINK">View Cart</a></td></tr>	
    		<tr><td>&nbsp;</td></tr>
    		<tr><td valign="bottom" align="middle"><img src="g.gif">&nbsp;<a href="NETQUOTEVAR:NAVBCHECKOUTLINK">Checkout Now</a></td></tr>	
    		<tr><td>&nbsp;</td></tr>		
                </table><br>
              </td>
            </tr>
          </table>
          
          <br>
    	
          <!-- credit card logo table start -->
          <table width="150" border="0" cellspacing="0" cellpadding="0">
            <tr> 
              <td height="22" bgcolor="NETQUOTEVAR:PALCOLOR1CSS" background="tab_pal2.gif" class="actsmallheading"><b>&nbsp;&nbsp;PAYMENT METHODS </b></td>
            </tr>
            <tr align="center" valign="middle"> 
              <td class="thinred2"> 
                <table width="100%" cellspacing="2" cellpadding="2">
                  <tr align="center" valign="middle"> 
                    <td><img src="visa.gif" width="34" height="22"></td>
                    <td><img src="master.gif" width="34" height="22"></td>
                    <td><img src="elec.gif" width="32" height="22"></td>
                  </tr>
                  <tr align="center" valign="middle"> 
                    <td><img src="swi.gif" width="29" height="22"></td>
                    <td><img src="solo.gif" width="30" height="19"></td>
                    <td><img src="delta.gif" width="32" height="21"></td>
                  </tr>
                  <tr align="center" valign="middle"> 
                    <td colspan="3"><img src="paypal.gif"></td>
                  </tr>
                  <tr align="center" valign="middle"> 
                    <td colspan="3"><img src="protxsecuredtrans150_75.gif"></td>
                  </tr>
                  <tr align="center" valign="middle"> 
                    <td colspan="3"><img src="chequebook.gif"></td>
                  </tr>
    	      <tr><td colspan="3">CUSTOMVAR:RIGHTBARTEXT</TD></TR>
                </table>
              </td>
            </tr>
          </table>
          <!-- credit card logo table end -->
    <added> Please, cut and paste your own code, I have a few extra bits in mine which would break your site <added>
    Last edited by wjcampbe; 07-Aug-2005, 10:09 AM. Reason: add caveat
    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