Changing Colours On Standard Template

Hi all and HAPPY New Year!

Just a quick question. How and where can I change the colours on this standard CS Cart template.

Design, Theme, Editor does not give me the options to change these, so I'm assuming I need to change some css files somewhere? I just need to know the location(s). I can inspect them and see them but from there I'm lost. Using CS Cart 4.3.5

Picture attached

Thanks

DrHemp

CS Cart 4.3.5 colours.png

Please add this code to the CSS section of the theme editor:

.ty-dropdown-box__title {
    background: yellow;
}
.ty-dropdown-box__title.open {
    background: green;
}
.ty-dropdown-box__title:hover {
    background: red;
}

This will help you to understand how to use these styles

Many Thanks!

Many Thanks!

You are welcome!