MyBB Community Forums

Full Version: Help with gap below I Agree button
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I need to know where on my registration page template I can increase the gap below the I Agree button as it sits right next to an advert at the moment and is not that easy to spot on the page.

The URL is here: http://www.pcprobs.info/member.php?action=register

I'm on MyBB 1.6.3

Also, where can I change the text on the I Agree button?

Any help is appreciated. Thanks.
In ACP > Templates > Your theme temlates > Member Templates > "member_register_agreement" template, find;
<input type="hidden" name="action" value="register" />
<input type="submit" class="button" name="agree" value="{$lang->i_agree}" />
and Change it into;
<input type="hidden" name="action" value="register" /><br/><br/>
<input type="submit" class="button" name="agree" value="{$lang->i_agree}" />
All sorted. Many thanks.
Thanks Smile