phaser2222
Forum Replies Created
-
Forum: Themes and Templates
In reply to: turn off responsiveness in twentythirteen theme?This css edit to style.css brought back my regular menu under 660px.
I’d had it at 450px which is why the menu disappeared and then came back…@media all and (max-width: 660px) {
.main-navigation ul {
display: block !important;
}#mm0 {
display: none;
}}
Forum: Fixing WordPress
In reply to: Twenty Thirteen disable menu toggle@media all and (max-width: 660px) {
.main-navigation ul {
display: block !important;
}#mm0 {
display: none;
}}
This css edit to style.css brought back my regular menu under 660px.
Forum: Fixing WordPress
In reply to: Twenty Thirteen disable menu toggleEditing this out of the header.php in my child theme did the trick for me.
<h3 class=”menu-toggle”><?php _e( ‘Menu’, ‘twentythirteen’ ); ?></h3>
HOWEVER, my regular menu is missing from 600px to 400px. If the window is over 600px it’s shows up, if it’s under 400px it shows up…
Curious.Forum: Themes and Templates
In reply to: turn off responsiveness in twentythirteen theme?Ok editing this out of the header.php in my child theme did the trick.
<h3 class=”menu-toggle”><?php _e( ‘Menu’, ‘twentythirteen’ ); ?></h3>
I re-enabled the menu toggle in twentythirteens functions.js (line 30) and the toggle menu is still gone. 🙂
HOWEVER, my regular menu is still missing from 600px to 400px. If the window is over 600px it’s shows up, if it’s under 400px it shows up…
Curious.Forum: Themes and Templates
In reply to: turn off responsiveness in twentythirteen theme?I have edited this out and it adds the normal menu in when it is about 300px, the toggle is there at around 600px, and gone when the screen is wider. Is seems there are three different sizes. Anyways, editing this out did not do the trick.
/**
* Enables menu toggle for small screens.
*/
// ( function() {
// var nav = $( ‘#site-navigation’ ), button, menu;
// if ( ! nav )
// return;
//
// button = nav.find( ‘.menu-toggle’ );
// if ( ! button )
// return;// Hide button if menu is missing or empty.
// menu = nav.find( ‘.nav-menu’ );
// if ( ! menu || ! menu.children().length ) {
// button.hide();
// return;
// }// $( ‘.menu-toggle’ ).on( ‘click.twentythirteen’, function() {
// nav.toggleClass( ‘toggled-on’ );
// } );
// } )();Forum: Fixing WordPress
In reply to: Twenty Thirteen disable menu toggleI need the same thing. Anyone?
Forum: Themes and Templates
In reply to: turn off responsiveness in twentythirteen theme?Also, I would like know how to just turn off the responsive menu toggle. My nav without the toggle looks better on small devices…
Anyone?
Thanks!!