Hi, My attempt at customizing my registration page is less than pleasing. What I need: - aMember branding at the top removed - The title "Reading Secrets of High Achieving Students" removed - The "If you already have an account on our website, please login to continue" message removed - The html below cleaned up - proper spacing in the tables - correct word wrap - my red check mark graphics next to the several bullet points (they don't even show up now) - It currently looks like this. I want it to look more like this. It doesn't have to be exact. I just need it to look professional. How much would you charge to get this done and what is your time frame for completion? I'm launching my first webinar in about 10 days and would like to have it done before then. Thanks.
Hello, 1. You can upload your logo at aMember Cp -> Configuration - >Setup/Configuration -> Default Theme 2. You can use CSS to hide header: Code: h1 {dispaly:none} 3. You can remove it with the following code in site.php http://www.amember.com/docs/Site.php_file PHP: Am_Di::getInstance()->hook->add(Am_Event::BEFORE_RENDER, function(Am_Event $e) { $v = $e->getView()->noLoginOffer = true;}); To achieve all other needs you need to modify theme template http://www.amember.com/docs/Themes_and_Templates http://www.amember.com/docs/Custom_Signup_Forms I recommend to contact @miso for theme customization http://www.amember.com/forum/thread...r-your-amember-by-an-expert-webdesigner.7509/ Best Regards.