Hi Aatara
Please give a link to your site.
Cheers
Thread Starter
Aatara
(@aatara)
But I fixed the problem. Now I’m trying to find the code to change the menu bar, the circles and that yellow line to a new color of my choice.
Not sure if the theme has options to change the colour but if not you have two options I can recommend. If you don’t already have a child theme or a custom.css you should install a plugin like custom CSS plugin then add the following to the custom css area.
.feature-content-inner .circle {
background: #ff6600;
}
change the ff6600 to whatever colour you want
Thread Starter
Aatara
(@aatara)
Ok that worked. But is there a code to change the color for the menu bar? If not what about the text?
If you want them to be the sa,e colour then use:
.feature-content-inner .circle, .menu_wrapper {
background: #ff6600;
}
otherwise if different colours then:
.feature-content-inner .circle {
background: #ff6600;
}
.menu_wrapper {
background: #000000;
}