Homepage - Featured Team w/ Additional Columns

 avatar
LBautista
css
24 days ago
803 B
1
Indexable
Never
/*START - fix button color & add theming*/
div.redesign ul.slick-slider{    
    button.lp-arrow{
        border-color: #875C44;
        background-color: transparent;
        &:before{
            color: #875C44;
        }
        &:hover{
            border-color: #875C44;
            background-color: #875C44;
            &:before{
                color: #fff;
            }

        }
    }
    a.lp-btn{
            border-color: #fff;
            background-color: transparent;
        color: #fff;
        max-width: unset;
        &:hover{
            border-color: #fff;
            background-color: #fff;
            color: #875C44;
        }
        }
        a.lp-link:after{
        background-color: #fff;
    }
}
/*END - fix button color & add theming*/
Leave a Comment