BuddyBoss Home – Web Support Forums Themes OneSocial theme Change or submission links to buttons please

Viewing 4 posts - 1 through 4 (of 4 total)
  • Question

    #62369
    @conscious-crafties

    Hello,

    In One Social theme, all call to actions are links instead of buttons.

    This doesn’t say ‘click me’ to users.

    I have been given some CSS to change SOME of the links to buttons, but all the links should be changed to buttons so they are very clear call to actions.

    How to we do that or is this something planned for your next release?

    Here’s the code I was given which worked great for individual buttons, but I need for every submit link throughout the site (see screenshots of how much clearer the button is to users)

    /*Make Send Message a button*/
    .messages #messages-layout .submit > input[type="submit"] {
      background-color: #b556a6 !important;
      border: none !important;
      color: #fff !important;
      padding: 10px !important;
    }
    
    /*Make Gravity forms links a button*/
    #post-3852 .gform_footer input.gform_button {
        background-color: #b556a6 !important;
        border: none !important;
        color: #fff!important;
        padding: 10px!important;
    }

    Thanks,

    Karen

    Answers

    #63535
    @anve

    Hi @conscious-crafties,

    You can use this css in generalized way like.

    
    input[type="submit"]{
    background-color:#b556a6;
    border: none !important;
    color: #fff!important;
    padding: 10px!important;
    }
    

    And thanks for pointing that out , will take care in our next release.

    Regards
    Anve

    #63590
    @conscious-crafties

    Thank you Anve! I added to One Social Child Theme CSS and it worked perfectly on all my buttons.
    Shall I remove this CSS in your next release?
    Many thanks,
    Karen

    #63597
    @anve

    Hi @conscious-carfties,

    We have added your requirement in our suggestion list , in our next release we’ll come with best of design . You can use this css in fulfilling your site’s requirement .

    Regards
    Anve

Viewing 4 posts - 1 through 4 (of 4 total)
  • The question ‘Change or submission links to buttons please’ is closed to new replies.