Topic Resolution: Resolved
  • Closed
  • M Pax
    Spectator
    July 22, 2016 at 12:48 am #29259

    Can I change the color of the type inside the buttons? Can I change the font? If so, how? I’m using Evolve Plus.

    Thank you. 🙂

    Denzel Chia
    Moderator
    Posts: 2656
    July 22, 2016 at 1:04 am #29261

    Hi,

    Please go to Theme Options -> Shortcodes -> Button -> Button Accent Color
    The following is the option description.

    This option controls the color of the button text and icon.

    As for changing the button typography,
    It’s only possible to change to a typography that you are currently using on your website.
    I will need to see your button on your website, Please post url that shows your button.

    Thank you.

    M Pax
    Spectator
    Posts: 22
    July 23, 2016 at 3:14 am #29272

    OK, I got that. Thank you for the pointer. Got the button type to a different color.

    I have another question on the blog sidebar…

    First off, here’s a link to a blog post – http://mpaxauthor.com/2016/07/06/its-shark-month-gearing-up-for-sharknado-scifi/

    I’d like to:

    1. Change the separator thingie. Right now it puts in a bar that looks like a toothpick. Is there a way to change that?

    2. Is it possible to change the background color and the color of the type for the sidebar?

    Thank you. 🙂

    Denzel Chia
    Moderator
    Posts: 2656
    July 23, 2016 at 8:19 am #29279

    Hi,

    Please use the following in Theme Options -> Custom CSS
    This will remove the shadow below widget.

    .widget::after {
    box-shadow: none !important;
    }

    the color of the type for the sidebar

    Sorry, I do not understand this. Please explain in more details.

    Thank you

    M Pax
    Spectator
    Posts: 22
    July 24, 2016 at 12:23 am #29290

    If I want to change the separator to something else, how do I?

    I want to offset the side bar by changing the background color behind the widgets. How do I do that?

    Daniel Jones
    Spectator
    Posts: 148
    July 24, 2016 at 3:38 pm #29295

    Hi M,

    Thanks for reaching out to us again.

    Try out the following custom CSS code, you can change the values to fit your needs:


    ///sidebar separator
    .widget::after {
    border-radius: 100px / 1px;
    }
    ///widget background
    #secondary {
    background-color: #ccc;
    }

    Regards.

    M Pax
    Spectator
    Posts: 22
    July 25, 2016 at 12:01 am #29299

    OK, thank you.

    M Pax
    Spectator
    Posts: 22
    July 25, 2016 at 5:59 am #29308

    I couldn’t figure out where to put this:

    .widget::after {
    box-shadow: none !important;
    }

    Where in the CSS does it go?

    M Pax
    Spectator
    Posts: 22
    July 25, 2016 at 6:21 am #29309

    Nevermind. I figured it out. 🙂 Thanks!

    M Pax
    Spectator
    Posts: 22
    July 25, 2016 at 6:31 am #29310

    Got the separators removed, but the code for changing the color of the sidebar didn’t do anything. I used the html # colors in the #ccc and it didn’t change the color.

    I put the code in the custom CSS. Was that right?

    Daniel Jones
    Spectator
    Posts: 148
    July 25, 2016 at 8:40 am #29312

    Hi again M,

    Thanks for confirming.

    Please try this code instead:
    /*widget background color*/
    .widget-content {
    background-color: #ccc;
    }

    I hope this helps!