Styling Registration Form
Permalink
I've made the registration form appear on my site by editing the site_theme_paths.php file. What I'd like to do is get the fields to line up correctly, as at present they go in & out depending on the length of the Handle on the field.
How do I go about styling this.
How do I go about styling this.
http://www.concrete5.org/marketplace/addons/form-tableless-layout/
Will this work with the Registration form as it's on a Single Page?
woops- sorry didn't see registration. what you want to do is to copy the single page from root/concrete/single_pages to root/single_pages and then define divs around them, and then style that in your themes css.
Hi there you can also use events to override the site_theme_paths.php.
Hi Revolutium Studio,
Can you give me a link to an example of how to do this?
Can you give me a link to an example of how to do this?
I am thinking in doing a how to about something similar to this. Today
is bank holiday in the uk, later on i will send you an example how to
override theme paths .
On 4/29/11, Concrete5 Community <discussions@concretecms.com> wrote:
is bank holiday in the uk, later on i will send you an example how to
override theme paths .
On 4/29/11, Concrete5 Community <discussions@concretecms.com> wrote:
Hi there.
http://www.concrete5.org/developers/bugs/5-4-1-1/install-single-pag...
Follow this link and read my discussion with Mnkras.
I was looking to install a login page from a package and end up learning how to override site_theme_Path.php.
If this is correct and solves your problem please consider best anwser for future reference:}
http://www.concrete5.org/developers/bugs/5-4-1-1/install-single-pag...
Follow this link and read my discussion with Mnkras.
I was looking to install a login page from a package and end up learning how to override site_theme_Path.php.
If this is correct and solves your problem please consider best anwser for future reference:}
just put his code in root/single_pages/register.php (you'll probably have to make the file)
<? defined('C5_EXECUTE') or die("Access Denied."); ?> <h1><?=t('Site Registration')?></h1> <div class="ccm-form"> <? if($success) { switch($success) { case "registered": ?> <p><strong><?=$successMsg ?></strong><br/><br/> <a href="<?=$this->url('/')?>"><?=t('Return to Home')?></a> <? break; case "validate": ?> <p><?=$successMsg[0] ?></p>
Viewing 15 lines of 73 lines. View entire code block.