XF 2.2 Highlight text within a reply

Gsk8

Active member
Hi all!

While I can highlight text on a post, when in the actual reply box, there is no color. You can't tell if the text is highlighted or not. I tried it here in this forum and it's fine (shows up blue).

Can you point me to where I can make the text highlighted blue like below? Thanks!

Image15.webp
 
The css ::selection and ::-moz-selection pseudo elements are used to style the selected text. You would apply a background-color property to those elements to choose the selection background.

Im not sure if it depends on your theme but in my case using a XenFocus theme I found it in Style Properties under Rich Text Editor, see below:
selected-text-background.webp

If you have to do it custom and not in style properties, you can use ::selection and ::-moz-selection pseudo selectors in your CSS and apply a background-color property to them.
 
Top Bottom