How can i change the color's palette?

Hello everyone!

I want to customize the color of the palette. but from the men you can choose the color not in a precise way (I am referring to the non insertion of the color code or to the rgba), how can I do?
In particular I would like to change the accent color and the hover color.

Hello there,

I hope you are doing well today.

Adding color like that would require you to add new CSS. What is the element that you want to change?

Best Regards,
Support

accent color and hover color.

Hello there,

The only option there is to click on the color and change it there or with CSS.

Best Regards,
Support

ok how can I change the code with css?

HI there

Changing element style with css requires CSS and HTML knowledge, what i can offer is that show me page > element you want to change the style and i will generate custom CSS for you

Hello, in the meantime, thank you for answering me.
My goal is to change the hover color with this code # 194f9e, because in the customization settings there is no possibility to choose a precise color with codes or rgba.
Thanks in advance.

Hello there,

I hope you are doing well today.

Could you please provide a link to your website so that I can inspect it?

So you want to change the hover effect of what element?

Best Regards,
Support

site

I would like to change all the hover effects.
For example, if you look at my site, the menu items at the top if you leave the mouse pointer over is “dark” blue, while if you leave the pointer near but not on the writing it is blue “clear”. This is because the color of the hover does not match what I have modified in the css.

hi

There is a 2 conflicting css, you have to use the same color in this code, add them in the custom css:

#header .top-header .header-navigation ul li:hover a {
color: #273c4f !important;
}

#header .top-header .header-navigation ul li a:hover {
color: #194f9e !important;
}

ok, I changed,
I think. But how can I change only the color of the menu text ?

in the image I have highlighted what I would like to change, because the writing with the code # 194f9e with a background a little 'transparent tending to black are not seen. I would like them white

Hello there,

This will allow you to change the menu font color:


#header .top-header .header-navigation ul li a {
    color: red;
}

Best Regards,
Support

I can not find the code that wrote to me, but I solved it.
But my question was another. I would like to change the color of the menu text (which now turns blue) and change the background that I can not make it transparent.

hey, i already gave this code, you have to change css color in the code,
transparency to the drop-down menu can be added by this css:

#header .top-header .header-navigation ul li.menu-item-has-children .sub-menu {
background-color: rgba(255, 255, 255, 0.73);
}

Thanks so much. Finally we succeeded. You can end this discussion.

I have another question but I will make a new post
https://colorlibsupport.com/t/color-font-hover-in-drop-menu/

Hello there,

I am glad the solution worked for you.
Please feel free to contact us again in the future regarding any other issues.

Best Regards,
Support