Im having some issues with responsive + GF. I have done all the hard work (hard for me at least).
Seems that the @media will not work when im already using !important in basic css.
#input_9_4 {
width: 278px !important;
}
to change to
@media screen and (max-width: 479px) {
#input_9_4 {
width: 278px !important;
}
}
If i remove the first !important it WILL work but them my normal full width CSS doesnt override the stock GF style.
Any ideas how I can get around this? Or am I looking at this the wrong way?