Hi there
Does anyone know where or how I can change the colours of the pink and blue Join and Login buttons on the Evo Template?
Thank you
Hi there
Does anyone know where or how I can change the colours of the pink and blue Join and Login buttons on the Evo Template?
Thank you |
Hi templates/tmpl_evo/css/common.css Blue: /*--- Button ---*/
.bx-btn {
position: relative;
border-width: 0px;
background-color: rgba(2, 136, 209, 1.0); /* equal to #0288D1 */
background-image: none;
filter: none;
text-transform: uppercase;
text-shadow: none;
font-weight: 700;
font-size: 16px;
}
.bx-btn,
.bx-btn:hover {
box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.1);
color: #ffffff;
}
.bx-btn:hover,
.bx-btn:active {
background-color: rgba(2, 136, 209, 0.8);
}
Pink: .bx-btn-primary {
background-color: rgba(255, 64, 129, 1.0); /* equal to #FF4081 */
background-image: none;
filter: none;
}
.bx-btn-primary:hover {
background-color: rgba(255, 64, 129, 0.8);
}
But be aware that changes made to these colors will affect buttons site-wide, not only two buttons for Join/Login. If you want to change the colors of Join/Login buttons only then it is necessary to add CSS specifications for these exact buttons instead of changing existing CSS styles. Best Regards AntonLV - http://www.boonex.com/market/posts/AntonLV |
Thank you Anton, but sadly that did not work :( |
Thank you Anton, but sadly that did not work :( Clean your site's cache from [admin panel -> tools -> cache] and your browser's cache. That should help. Best Regards AntonLV - http://www.boonex.com/market/posts/AntonLV |
Ahh you rock the lama's socks!
Thank you Anton! |
You're welcome. Best Regards AntonLV - http://www.boonex.com/market/posts/AntonLV |