Reply To: Hover text in body copy

Homepage Community Forums Epik Theme Support Hover text in body copy Reply To: Hover text in body copy

#11000
Wes
Moderator

    Oh you’re talking about when you highlight the text. It looks like you may have changed it in your css….its located around line 193. Your code is showing that the background is white (#fff), but the demo is black #333 by default. I would just change it back to the black like this –

    ::selection {
    	background: #333;
    	color: #fff;
    }