In regards to this thread…
I made the change to ensure the spacing did not get too big when viewing on a mobile device.
@media only screen and (max-width: 768px) {
#header_main { height: 90px; }
}}
When I added that code to the custom CSS, it resulted in the following custom CSS no longer working…
.small-preview { display: none !important; }
So now those small previews are still showing on the post pages. I confirmed by removing the @media only code above, and sure enough, the small previews went away. Have not seen this type of down-stream impact before.
Suggestions? Thanks!
Hey spidercreations!
Please convert your code to
@media only screen and (max-width: 768px) {
#header_main { height: 90px; }
}
let us know if that extra } was messing with any other tag.
Best regards,
Basilis
Yes. That was the issue. Strange, but it’s fixed.
Thank you again.
Steve