Okay
  Public Ticket #3592876
Registration Form is messy
Closed

Comments

  • madina12 started the conversation

    Dear Author

    I spent 8 hours to fix this but your theme can only be editable by advanced programmers. I just want to edit the registration form with some styles like input boxes 100% width, gaps between boxes (margin) and background pink and some more edits. 

    My registration form is too messy and I can't edit its style as its uses shortcode. Please advise on how to give it a perfect look. please refer to the enclosed picture to see my messy registration page.

    My registration page :https://www.inklogy.com/registration/

    i have shared login cred in another ticket, still if that's too difficult for you to find, let me know.

    Attached files:  2 registraton page messy.JPG

  • [deleted] replied

    Please try adding this custom css in your wp-admin-> appearance-> customize -> custom css : 


    .wplms_registration_form form ul li {list-style:none !important;}
    .wplms_registration_form form ul li{
        display:flex;
        flex-direction:column;
        gap:0.5rem;
        margin:1rem;
        color:#ffffff;
    }
    .wplms_registration_form form ul li input,.wplms_registration_form form ul li select{
        background:transparent;
        border:1px solid rgba(0,0,0,0.25);
        border-radius:10px;
    }


  • madina12 replied

    Thank you it helped.