How can I make my sign-up form look better

I’m using membership2 and was able to edit most pages that the plugin creates so that they look good in my theme.

But when a user clicks the sign-up button at this link http://www.schooladvice.ca/memberships/ they are taken to a very primitive looking sign-up form that I am not able to edit.

Can you help me with making the sign-up form look better. I want it to show below the header on my site and not at the edge of the screen.

Thank-you

Michael

  • Vinod Dalvi
    • WP Unicorn

    Hi Michael,

    I hope you are well today and thank you for your question.

    Can you help me with making the sign-up form look better. I want it to show below the header on my site and not at the edge of the screen.

    You can achieve this by adding the following CSS code in the style.css file of your child theme or add it in your site using the following plugin.

    https://wordpress.org/plugins/simple-custom-css/

    body.page-id-16119 .container .wpb_column.vc_column_container.vc_col-sm-8 {
    margin: 0 auto;
    float: none;
    }
    body.page-id-16119 .container .wpb_column.vc_column_container.vc_col-sm-4 {
    display: none;
    }

    Best Regards,

    Vinod Dalvi