Forums

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

Home Forums CSS Transparent Problem on text

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #36357
    shaifshahin
    Participant

    http://regionalmex.com/2012/01/gerardo-ortiz-re-releases-album/
    in this page when I select the text, all text going to invisible, I need to keep it Visible, How can i fix it.

    #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 */ }
Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘CSS’ is closed to new topics and replies.