By Paul Murray on Thursday, 14 September 2017
Posted in General
Likes 0
Views 576
Votes 0
Hi SI Team

I have this is my custom css file:


/* controls the font ENTER CODE BELOW */
a {
color: #0c9019 !important;
}


Which as far as I can tell takes care of the colour on my site text links etc.

This is all well and good but I do not want it taking effect here on the buttons etc:

https://www.finalbug.net/component/hikashop/product/23-fcpx-foundations

Hika Shop kindly gave me the following:


a.hikabtn{ color: white !important; }


So I added 1+2 and made this:


/* controls the font ENTER CODE BELOW */
a {
color: #0c9019 !important;
a.hikabtn{ color: white !important; }
}


But the text in the Hika Shop buttons is still green.

https://www.finalbug.net/component/hikashop/product/23-fcpx-foundations

Kindly advise what I am doing wrong

thanks

Paul
Hi Paul,

The css code that hika shop provided is correct. Where you cannot included it in the same (a.) class
Where it suppose to be as:

a {
color: #0c9019 !important;
}
a.hikabtn{
color: white !important;
}
·
Thursday, 14 September 2017 18:15
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Fadhli

Perfect thank you

best

Paul
·
Friday, 15 September 2017 00:52
·
0 Likes
·
0 Votes
·
0 Comments
·
You are most welcome Paul, glad that your issues are resolved now
·
Friday, 15 September 2017 01:14
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post