how can I give the button a solid frame? And when I hover over the button the frame should stay. See example in attached files. Because in the settings "Fonts&Colors" there is no option to set this.
I did it by my self via custom CSS. You can close this ticket. For those who are interested: Paste the code below in Dashboard -> STEC -> Fonts&Colors -> Custom Style
Hi,
how can I give the button a solid frame? And when I hover over the button the frame should stay. See example in attached files. Because in the settings "Fonts&Colors" there is no option to set this.
Regards
I did it by my self via custom CSS. You can close this ticket. For those who are interested: Paste the code below in Dashboard -> STEC -> Fonts&Colors -> Custom Style
body .stec-style-button:hover {
background: #fff;
border-style: solid;
border-width: 1px 1px 1px 1px;
border-color: #333333;
}
body .stec-style-button {
border-style: solid;
border-width: 1px 1px 1px 1px;
border-color: #333333;
}
body .stec-top .stec-top-menu > li {
background: #333333;
border-style: solid;
border-width: 1px 1px 1px 1px;
border-color: #333333;
}
body .stec-top .stec-top-menu > li:hover {
background: #fff;
border-style: solid;
border-width: 1px 1px 1px 1px;
border-color: #333333;
}