Topic Resolution: Resolved
  • Closed
  • M Pax
    Spectator
    August 2, 2016 at 6:46 pm #29547

    Changes to my button text won’t be saved – changing the accent color that controls the color of the button text.

    Also, the buttons after the first slider on the bootstrap slider on my homepage are different than all my other buttons. Why? How can I get them to be the same as on the first slide?

    http:mpaxauthor.com

    I’m using evolve plus.

    Denzel Chia
    Moderator
    Posts: 2656
    August 3, 2016 at 1:15 am #29559

    Hi,

    Your button for first slide is using class name button.
    The subsequent button on other slide is using the default class name bootstrap-button, which is why they are styled differently.

    You need to edit your slides, find the button HTML code.
    For example,

    Send my FREE ebooks

    Change it to the following.

    Send my FREE ebooks

    Thank you

    M Pax
    Spectator
    Posts: 22
    August 3, 2016 at 1:42 am #29562

    OK, that fixed the button issue. Thank you.

    However, I still can’t change the text color inside the button. I changed it once and the color refuses to change since. No matter what I do, it stays the same.

    Denzel Chia
    Moderator
    Posts: 2656
    August 3, 2016 at 6:16 am #29568

    Hi,

    You can use the following in Theme Options -> Custom CSS
    It will change the text color of your bootstrap slider button.

    #bootstrap-slider .button {
    color: #000000 !important;
    }

    Change #000000 to the hex color code that you require.

    Thank you.

    M Pax
    Spectator
    Posts: 22
    August 8, 2016 at 3:01 am #29637

    I want to change the color on all buttons. The short code isn’t working. It let me change it once and not again.

    Denzel Chia
    Moderator
    Posts: 2656
    August 8, 2016 at 4:26 am #29641

    Hi,

    Sorry, i don’t understand your reply.
    I provided custom css, not shortcode.

    I am also not able to find these custom css code in your page source.

    If you are using a cache plugin, you need to clear it’s cache content after you applied the codes.

    Thank you

    M Pax
    Spectator
    Posts: 22
    August 14, 2016 at 3:07 am #29748

    Under customize, there are short codes for Evolve Plus. One of them controls the buttons. One of them controls the color of the text inside the buttons.

    The color change often doesn’t work. Currently, it changed on my home page – http://mpaxauthor.com but did not change on the blog page – http://mpaxauthor.com/blog/

    I do not use a cache plug in. I use very few plug ins.

    Denzel Chia
    Moderator
    Posts: 2656
    August 15, 2016 at 2:28 am #29759

    Hi,

    To change the color of button text for this page. http://mpaxauthor.com/blog/

    Please use the following in Theme Options -> Custom CSS

    .blog .read-more {
    color: #f2eecd !important;
    }

    You can use this tool to get the color hex code that you require, and replace the #f2eecd from the above mentioned codes. http://www.colorpicker.com/

    Thank you

    M Pax
    Spectator
    Posts: 22
    August 15, 2016 at 10:05 pm #29774

    OK, that fixed the issue. Thank you!

    M Pax
    Spectator
    Posts: 22
    August 16, 2016 at 12:12 am #29775

    Also need custom code for category pages for the button font color.

    http://tabathamorrow.com/category/history-worth-reading/

    Denzel Chia
    Moderator
    Posts: 2656
    August 16, 2016 at 1:33 am #29781

    Hi,

    Please use the following in Theme Options -> Custom CSS

    .category .read-more {
    color: #f2eecd !important;
    }

    Thank you