How to make the Primary Menu stay the same in the PC and mobile versions of the Twenty Sixteen theme

Add below css in your theme style.css file, change font size if you need @media screen and (max-width: 56.875em) { .main-navigation li { float: left; width: 33.333333%; text-align: center; font-size: 12px; } } UPDATE: To make menu items inline apply floats on list elements not on nav tag I checked using inspect elements and code … Read more

Child Header.php Not Showing On Other Pages

I figured it out thanks to: Marian Heddesheimer YouTube video https://youtu.be/S4Hz0NqPGDM This was simple enough code, I just didn’t understand the WordPress Codex examples. This is the code for social link icons: <link id=”themify-icon-font-css” media=”all” type=”text/css” href=”https://wordpress.stackexchange.com/questions/218802/<?php echo get_stylesheet_directory_uri() ?>/font-awesome-4.5.0/css/font-awesome.min.css” rel=”stylesheet”> This is the code for my logo: <a href=”https://wordpress.stackexchange.com/questions/218802/<?php echo home_url() ?>”><img src=”<?php echo … Read more

How to remove “Category : …”

That title is coming from archive.php file of TwentySixteen theme. You can find a <header> code section in that file. What you can do, simply copy the archive.php file as category.php and then remove the following code section from category.php file: <header class=”page-header”> <?php the_archive_title( ‘<h1 class=”page-title”>’, ‘</h1>’ ); the_archive_description( ‘<div class=”taxonomy-description”>’, ‘</div>’ ); ?> … Read more