WBCE CMS Forum

WBCE CMS – Way Better Content Editing.

You are not logged in.

#1 28.06.2020 11:34:51

keepshango
Member

Override “reply to“ link inherited color style

Hi

*** MY CONFIGURATION ***
PHP 7.2.24
WBCE CMS 1.4.3
TEMPLATE : Acourdesz

Considering the 3 informations below, how do I get the #FFF; color overriding the #FFCC00; color only for the a.reply element ?

*** Class ref ***
<a href="#" class="reply" data-id="181a">Répondre à ce commentaire</a>

*** editor.css ***
a:link, a:visited {
1.  color: #FFCC00;
2.  text-decoration: none;
3.  transition: 0.5s all;

*** frontend.css ***
a.reply {
background: #c0392b;
padding: 5px 20px;
text-decoration: none;
display: inline-block;
font-weight: bold;
font-size: 0.8em;
color: #FFF;

Regards

Last edited by keepshango (28.06.2020 11:38:16)

Offline

#2 28.06.2020 12:27:19

florian
Administrator

Re: Override “reply to“ link inherited color style

a.reply:link, a.reply:visited {
... all your other definitions...
color: #FFF !important;
}

Code allein macht nicht glücklich. Jetzt spenden!
Und Danke an alle, die diesem Aufruf schon gefolgt sind! thumb_up

Offline

Board footer

up