Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Transparent Problem on text Re: Transparent Problem on text

#95609

This is what you have at the moment:

::selection { background: transparent; color:#FFFFFF; /* Safari */ }
::-moz-selection { background: transparent; color:#FFFFFF; /* Firefox */ }

Change it to this:

::selection { background: #444; color:#FFFFFF; /* Safari */ }
::-moz-selection { background: #444; color:#FFFFFF; /* Firefox */ }