• Resolved JS Morisset

    (@jsmoriss)


    Hey guys,

    I’m moving the support of WPSSO Core Pro (https://wpsso.com/) from Freshdesk to Support Candy. Setup has been going well, but some of the CSS could be improved… little things like the username / password input boxes having no space between them can be a bit annoying. 🙂 The large buttons on the sign-in page also look odd because everywhere else the plugin uses small buttons (so I’ve redefined the large buttons as small buttons). Here are some CSS fixes I’ve implemented so far. 😉

    
    #content .bootstrap-iso .btn-lg {       /* standardize and always use small buttons */
            padding: 5px 10px;
            font-size: 12px;
            line-height: 1.5;
            border-radius: 3px;
    }
    
    #content #wpsc_tickets_container {
            border-radius:0;                /* fix dated rounded corners */
    }
    
    #content #frm_wpsc_sign_in {
            margin-top:20px;                /* fix space in sign-in form */
    }
    
    #content #frm_wpsc_sign_in input[type="text"] {
            margin:10px 0;                  /* fix missing space between input boxes */
    }
    
    #content #wpsc_frm_signup_user {
            margin-top:20px;                /* fix space at top of form */
            margin-bottom:30px;             /* fix space at bottom of form */
    }
    
    #content .captcha_container {
            padding:10px;                   /* button too big and inherits wrong left/right padding */
    }
    

    js.

Viewing 1 replies (of 1 total)
  • Plugin Contributor Nikhil G

    (@nsgawli)

    Hello,

    Thank you for all your suggestions. I have added it in our suggestion list. We will surely discuss all the changes you have suggested.

Viewing 1 replies (of 1 total)

The topic ‘CSS Suggestions’ is closed to new replies.