Mar 11, 2024 10:53 am
If I wanted to change all buttons in Foro to a square by default, is this the right way to do it?
#wpforo #wpforo-wrap .wpf-button {
border-radius: 0;
}
Â
If I did that, then I could still individually style specific buttons like so, correct?
#wpforo #wpforo-wrap .wpf-head-bar-right .wpf-button {
border: 2px solid #C5001A;
background-color: #C5001A;
color: white !important;
font-size: 14px !important;
}Â
#wpforo #wpforo-wrap .fa-sharp fa-light fa-pen-field::before {
content: "\f58b" !important;
}
I'm trying to make Foro match the rest of my theme. Thanks.
Â
3 Replies
Mar 11, 2024 12:38 pm
Yes, sure. You've found the correct approach.