Notifications
Clear all

wpForo 1.x.x [Solved] Marking colour

3 Posts
2 Users
2 Reactions
697 Views
Posts: 243
Topic starter
(@berndg)
Reputable Member
Joined: 6 years ago

Hi, 

it's certainly a simple thing, but I can't find the point where I can change that. The marking color (the color that is underlayed when you mark a text passage for copying) is dark blue, so you can hardly read the text.

Where is that set?

 

Thanks for caring, 

 

Bernd

 

Website: https://www.alkohol-ade.com

2 Replies
Tutrix
Posts: 1493
(@tutrix)
Noble Member
Joined: 5 years ago

@berndg

you can define the colors via css :: selection

example i use these colors

::-moz-selection { 
background: #ff9900!important;
color: #fff !important;
}
::selection {
background: #ff9900!important;
color: #fff !important;
}

https://www.w3schools.com/cssref/sel_selection.asp

1 Reply
(@berndg)
Joined: 6 years ago

Reputable Member
Posts: 243

@tutrix Thanks! It worked, putting it into a snippet. 

Yours, Bernd