Change selected text color from standard blue to custom color

Hello there! I was wondering if there is any way to change the color of highlighted text on a Wix site. The current standard color is blue and I’d like to be able to change it to a custom color. See the screenshot for an example of a company website where they changed the highlighted text to their brand color (pink).

I’m VERY new to coding but willing to give it a shot if someone can offer a code or instructions.

Thanks!

There isn’t a simple way to do this, but you can check out this previous post for some pointers: https://www.wix.com/velo/forum/coding-with-velo/how-do-i-change-the-selected-text-color

You can also vote for this feature request here: https://www.wix.com/velo/requested-feature/change-the-color-of-selected-text-across-your-site

first you need to upgrade plan to activate Custom Code in the backend.

Settings>Custom Code

::-moz-selection { /* Code for Firefox */ color: white; background: pink; } ::selection { color: white; background: pink; }

you need to input this into Head area of custom code