Home Forums Basel support forum CTA button color

CTA button color

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

    fbascuiz
    Participant

    Hello,
    how can I change the color of the active font in the CTA button at menu? I attach a screenshot.
    regards

    Attachments:
    You must be logged in to view attached files.
    #32003

    Artem Temos
    Keymaster

    Hello,

    You can add the following CSS code to the Custom CSS area in Theme Settings to change this

    .basel-navigation .menu > li.callto-btn > a {
        background-color: #0d39b6;
    }

    Regards

    #32042

    fbascuiz
    Participant

    ok, how can edit the color of the text in cta button at hover, focus or active?

    regards

    #32045

    Artem Temos
    Keymaster

    You can do this with this code snippet

    .basel-navigation .menu > li.callto-btn > a {
        color: #ffffff;
    }
    
    .basel-navigation .menu > li.callto-btn > a:hover {
        color: #ff0000;
    }
    
    .basel-navigation .menu > li.callto-btn > a:focus {
        color: #00ff00;
    }
    
    .basel-navigation .menu > li.callto-btn > a:active {
        color: #0000ff;
    }
Viewing 4 posts - 1 through 4 (of 4 total)