Prevalent
Remove Residual Styling
Copy the header.php to your Child Theme.
Find:
1 2 3 4 5 6 7 |
<div class="toggle"> <a class="toggleMenu" href="#"><?php _e('Menu','prevalent'); ?></a> </div><!-- toggle --> <div class="sitenav"> <?php wp_nav_menu(array('theme_location' => 'primary')); ?> </div><!-- site-nav --> |
Replace with:
1 2 3 |
<div class="sitenav-mmm"> <?php wp_nav_menu(array('theme_location' => 'primary')); ?> </div><!-- site-nav --> |
Next, go to Appearance > Customize > Additional CSS and add the following:
1 2 3 4 5 |
@media screen and (min-width: 980px) { .sitenav-mmm { float: right; } } |