Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1038558

    Hello,
    I need you help!
    When I add a new button I just can chose between predefinite colors, but I’d like to use alternatively 2 colors of my brand. I can I do?
    Thank you very much!
    Alice

    #1038717

    Hey alididon,

    You would have to adjust via css. For example:

    .vc_btn3{
        background-color: #eb6f78!important;
        color: #ffffff!important;
    }

    Best regards,
    Jordan Shannon

    #1039056

    Hello Jordan,
    Thank you, the problem is that inside the button the words are not white, even after the css add.
    You can see the preview in the homepage for example…
    Thank you
    Alice

    #1039077

    Hi,

    You currently have this in your css that targets every link text within an article or paragraph including buttons:

    .entry-content a {
        color: #63b1bc!important;
    }

    Once this is removed and css is added that targets the actual button link you should be fine. For example:

    .vc_btn3-container.vc_btn3-center a{
    color:#fff!important;
    }

    Best regards,
    Jordan Shannon

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.