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.
You are not logged in.
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
Put it in a container.
<div style="max-width: 250px; margin: 0;">
<!-- payment box -->
</div>
Offline
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
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>
Offline
Offline