How can I only show one responsive menu on mobile devices?
I was missing the “theme_location” parameter for my wp_nav_menu() functions. http://wordpress.org/support/topic/selectively-activate-theme-locations-not-working
I was missing the “theme_location” parameter for my wp_nav_menu() functions. http://wordpress.org/support/topic/selectively-activate-theme-locations-not-working
How I can add responsive font size in theme.json file
What is the best way to incorporate responsive dropdown navigation menu into custom theme?
Understanding responsive imagery
Correct way to make a custom block theme responsive
This should do it for you. @media screen and (min-width: 59.6875em){ .site-title { display: none; } } I’m new here so I’m not sure why the downvotes.
Yes, you can do that using a media query. If you don’t mind I suggest you to use media query simple. The exact query will depend on your site structure and how the menu is identified in your code. Before you do that, make sure your navigation will not be hidden as well; most website … Read more
The Jetpack plugin has its own mobile theme, which is overriding the child theme.
Although this is not really a WordPress question, but the visibility property does not actually HIDE any element. It only fades it so you can’t see it, but it still reserves space for it. You need to use the display property: .mobile-only { display:hidden; } @media (min-width:992px) { .desktop-only { display:block !important; } } @media … Read more
Go to Admin area -> Appearance -> Editor and open Archive.php template from right side and change the following line from the_excerpt(); to the_content(); Thanks to @kraftner Reference