My nav disappears on ipad-sized media. I have changed the code to take away the left sidebar on desktops:
@media(min-width:768px)
{
.site-actions{display:none;}}
What did I do wrong? It’s display:none on everything until smartphone media sizes, where it pops up where it shoud be..
http://weedies.org
1 Answers
To resolve this issue, follow our instruction below:
Firstly, follow the jetpack’s guideline in the Blog article on how to use Edit CSS here. http://designwall.com/blog/using-jetpack-custom-css-for-your-wordpress-site/
Then add the code to the Edit CSS
@media(max-width:768px){ .site-actions{ display: block !important; } } .site-actions{ display:none; }
Anything else you need to assist, don’t hesitate to let us know 🙂
Regards,
Please login or Register to submit your answer