• Resolved nicooooooooo

    (@nicooooooooo)


    Hello, when I want to use a white outline button, by default it uses the base color of the texts and not white, which means that having a dark background, the outline button is dark like the general texts, unless you put the mouse above.

Viewing 1 replies (of 1 total)
  • Thread Starter nicooooooooo

    (@nicooooooooo)

    inspecting the elements, I realized that adding this code in flatsome, solved my problem

    .white.button.is-outline {
        background-color: transparent;
        color: white !important;
    }
    
    .white.is-outline:hover {
        background-color: #fff !important;
        border-color: #fff;
        color: #333 !important;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘button outline color white, color is affected by “base text color”’ is closed to new replies.