In the Styling section of the template I can add the specific colors of the Heading, Main Content, Alternate Content, and so on. Yet when I enter my company # color it changes it to a slightly different one. I really need it to be that specific one as the company logo and some images with the right color will begin to conflict with the other color. How to disable this please?
Hi DavyE,
What color code are you using? As long as it is a six digit hex color code it should be fine to use.
Regards,
Devin
I use: #EF7C0B
It automatically replaces it by: #EF7D0B
So the C is changed to D, but it means an obvious difference when right next to a correct one.
Hi,
You can manually apply the background color on your Quick CSS.
Example:
.header_color .header_bg {
background-color: #EF7C0B;
}
.main_color {
background-color: #EF7C0B;
}
Cheers,
Ismael
I know, but isn’t it a lot of hassle trying to figure out where the wrong color has been applied? Links, highlights, buttons, backgrounds, icons, etc etc …
Open up and replace:
$constant_font = avia_backend_calc_preceived_brightness($primary, 230) ? '#ffffff' : $bg;
with
$constant_font = $primary;
and all occurrences of
$stripe = avia_backend_calculate_similar_color($primary, 'lighter', 2);
with
$stripe = $primary;
and
$constant_font = avia_backend_calc_preceived_brightness($primary, 230) ? '#ffffff' : $bg;
with
$constant_font = $primary;