S2 how to change the dimension of paypal form

hi!

when I insert the shortcode to pay with PayPal, the button remains in a large space called “form” but I find no way to eliminate this blank space. Can someone help me?

Use PHP version (you may need a plugin to run PHP in page) and delete the HTML remarks in it.

thanks Krumch

sorry but im a little bit noob in this:

i have this code:
form action=“https://www.paypal.com/cgi-bin/webscr” method=“post”
input type=“hidden” name=“business” value="" /
input type=“hidden” name=“cmd” value="_xclick-subscriptions" /
!-- Instant Payment Notification & Return Page Details -->
input type=“hidden” name=“notify_url” value=“http://test78.it/?s2member_paypal_notify=1” /
input type=“hidden” name=“cancel_return” value=“http://test78.it/” /
input type=“hidden” name=“return” value=“http://test78.it/?s2member_paypal_return=1” /
input type=“hidden” name=“rm” value=“2” /
!-- Configures Basic Checkout Fields –
input type=“hidden” name=“lc” value="" /
input type=“hidden” name=“no_shipping” value=“1” /
input type=“hidden” name=“no_note” value=“1” /
input type=“hidden” name=“custom” value=“test78.it” /
input type=“hidden” name=“currency_code” value=“USD” /
input type=“hidden” name=“page_style” value=“paypal” /
input type=“hidden” name=“charset” value=“utf-8” /
input type=“hidden” name=“item_name” value=“Bronze Member / description and pricing details here.” /
input type=“hidden” name=“item_number” value=“1” /

input type=“hidden” name=“invoice” value="<?php echo S2MEMBER_VALUE_FOR_PP_INV(); ?>" /

input type=“hidden” name=“on0” value="<?php echo S2MEMBER_CURRENT_USER_VALUE_FOR_PP_ON0; ?>" /
input type=“hidden” name=“os0” value="<?php echo S2MEMBER_CURRENT_USER_VALUE_FOR_PP_OS0; ?>" /

input type=“hidden” name=“on1” value="<?php echo S2MEMBER_CURRENT_USER_VALUE_FOR_PP_ON1; ?>" /
input type=“hidden” name=“os1” value="<?php echo S2MEMBER_CURRENT_USER_VALUE_FOR_PP_OS1; ?>" /

input type=“hidden” name=“modify” value=“0” /

input type=“hidden” name=“src” value=“0” /
input type=“hidden” name=“srt” value="" /
input type=“hidden” name=“sra” value=“1” /

input type=“hidden” name=“a3” value=“0.01” />
input type=“hidden” name=“p3” value=“1” />
input type=“hidden” name=“t3” value=“D” />

input type=“image” src=“https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif” style=“width:auto; height:auto; border:0;” alt=“PayPal” /
/form

can you tell me how i can delete the blank space inside the form?

i must change the form in div element?

You must delete the lines, that starts with <!-- and ends with -->, inside this code (the < and > chars are not all shown here, but should be in the code you use). May delete also all the free rows as well. That works for me.