I found the code below in the forums that fixed the header in responsive mode. But when I enter it into QuickCSS, it overrides the default fonts. When I delete the code below from Quick CSS, the default fonts are restored. Site is: nexuscontentlab.com. Thanks Mike.
@media only screen and (max-width: 767px) {
.responsive #top #header {
position: fixed;
}
The problem was with the extra bracket after:
@media only screen and (max-width: 767px) {
Thanks, Mike.
Hi!
Glad you figured it out Mike! But actually one curly bracket is missing in the end of the code. So it should be
@media only screen and (max-width: 767px) {
.responsive #top #header {
position: fixed;
} }
Regards,
Yigit
Arrgh, I should have caught that :-). Thanks!!