Community @ The Turning Gate

Support community for TTG plugins and products.

NOTICE

The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.

This forum is now closed, and exists here as a read-only archive.

  • New user registrations are disabled.
  • Users cannot create new topics.
  • Users cannot reply to existing topics.

You are not logged in.

#1 2013-03-06 20:06:40

mridley
Member
From: UK
Registered: 2012-09-26
Posts: 221
Website

Paypal

Sorry guys a little off topic but i'm after a little advise ( i'm not good at understanding code etc)

I used to use stage for an instant payment option, I.E they typed an amount in a paypal box etc, now when using Pages CE3 for the same think, the payment box is the width of the page

http://www.tsiphotography.co.uk/about.php

I done a search but can't to find a way to make the payment box smaller??

Last edited by mridley (2013-03-06 21:22:18)

Offline

#2 2013-03-06 21:16:43

Matthew
Administrator
From: San Francisco, CA
Registered: 2012-09-24
Posts: 5,795
Website

Re: Paypal

Put it in a container.

<div style="max-width: 250px; margin: 0;">
<!-- payment box -->
</div>

Matt

The Turning Gate, http://theturninggate.net

Offline

#3 2013-03-06 21:26:40

mridley
Member
From: UK
Registered: 2012-09-26
Posts: 221
Website

Re: Paypal

Sorry Matt, I did say i was rubbish at this :-(

where would the code go in here?

###Payments & Deposits

We use PayPal as our payment method.

If you don't have a PayPal account you can pay with a credit or debit card. 

If you wish to make a payment for a deposit or a payment requested by TSI Photography, please enter the amount in the box below which will then take you to the secure payment screen.

Deposits are non-refundable after 14 days.                                                                                                                   
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="mark@tsiphotography.co.uk">
<input type="hidden" name="lc" value="GB">
<input type="hidden" name="item_name" value="Photographic Payments">
<input type="hidden" name="currency_code" value="GBP">
<input type="hidden" name="button_subtype" value="services">
<input type="hidden" name="no_note" value="0">
<input type="hidden" name="bn" value="PP-BuyNowBF:btn_paynowCC_LG.gif:NonHostedGuest">
<table>
<tr><td>Enter Amount here</td></tr><tr><td><input type="text" name="amount" maxlength="8
"></td></tr>
</table>
<input type="image" src="https://www.paypalobjects.com/en_GB/i/btn/btn_paynowCC_LG.gif" border="0" name="submit" alt="PayPal — The safer, easier way to pay online.">
</form>

Offline

#4 2013-03-06 21:40:47

Matthew
Administrator
From: San Francisco, CA
Registered: 2012-09-24
Posts: 5,795
Website

Re: Paypal

The visible bit, being the thing that's not marked as "hidden". And just for good measure, let's not use a table, because eeewww.

Replace:

<table>
<tr><td>Enter Amount here</td></tr><tr><td><input type="text" name="amount" maxlength="8
"></td></tr>
</table>

With:

<div style="max-width: 250px; margin: 0;">
<p>Enter Amount here<br />
<input type="text" name="amount" maxlength="8" />
</p>
</div>

Matt

The Turning Gate, http://theturninggate.net

Offline

#5 2013-03-06 21:45:52

mridley
Member
From: UK
Registered: 2012-09-26
Posts: 221
Website

Re: Paypal

Thank you!!!

Offline

Board footer

Powered by FluxBB