Hey,
I have this code for one of my buttons.
I also want the button to have this background color: #f66733
What shall I add to the code for this background color?
Thanks
Charlotte
.knapp .avia_iconbox_title {
font-size: 17px !important;
color: black !important;
font-family: oswald !important;
}
Hey Charlotte!
Have you tried add
background: colorvalue;
and it did not worked?
Thank u
Cheers!
Basilis
Like this:
knapp .avia_iconbox_title {
font-size: 17px !important;
color: black !important;
background: colorvalue;#f66733;
font-family: oswald !important;
}
Hi,
You have a few mistakes in your code, please try this instead:
.knapp .avia_iconbox_title {
font-size: 17px !important;
color: black !important;
background-color: #f66733 !important;
font-family: oswald !important;
}
Best regards,
Rikard
Thanks Rikard.
I have change to your code now but it does not completely override what is already set, see http://www.coolbudgethotels.com/porto/
Hey!
Please add following code to Quick CSS
.knapp .avia-button {
background: #f66733!important;
border-color: #f66733 !important;
}
Regards,
Yigit
Thanks Yigit :)