Forums

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

Home Forums CSS Need help with "Responsive css" on my style sheet? Reply To: Need help with "Responsive css" on my style sheet?

#157248
Loreley
Participant

The reason why some of the colours work only in Firefox is because in the css you have cs3 gradient brackground prefixed for FF only:
background: -moz-linear-gradient(center top , #FEFEFE, #F4F4F4) repeat scroll 0 0 padding-box rgba(0, 0, 0, 0) !important;

You’ll also need the declarations for the other browsers, e.g:

background: -webkit-linear-gradient(top, #FEFEFE 0%, #F4F4F4 100%);