I want to hide menu responsive
Home › Forums › WordPress Theme Support › BresponZive Mag › I want to hide menu responsive
Tagged: hide
- This topic has 7 replies, 2 voices, and was last updated 9 years, 10 months ago by Raja CRN.
-
AuthorPosts
-
March 19, 2015 at 9:29 am #5075JuanitoMember
Hi
Please help me, I want to hide menu responsive dropdown because it is ugly, I have my own menu responsive better than the menu dropdown.
Please visit my web site for see: http://www.fifabolivia.com
Thanks
March 25, 2015 at 4:04 pm #5102Raja CRNKeymasterHi,
Yes, You can remove it. Edit tpcrn_scripts.js file in js folder.
There delete the section of the code to remove the responsive menu.
/*Create the dropdown bases ……
……
The code to be removed here.
…..
/*Create the dropdown basesHope you got it. Sorry for the delayed response.
March 25, 2015 at 9:45 pm #5109JuanitoMemberSorry, but the code it is something different:
Please, What lines should eliminate exactly?
thank
/* File Name: tpcrn_scripts.js Author : Raja CRN by ThemePacific */ jQuery(document).ready(function () { jQuery('.tabs_container2 .tab_content2:first').show(); jQuery('.tabs2 li:first').addClass('active'); jQuery.each(jQuery('.tabs2 li'),function(i,el){ jQuery(el).click(function(){ jQuery('.tabs_container2 .tab_content2').slideUp(); jQuery('.tabs_container2 .tab_content2').eq(i).slideDown(); jQuery('.tabs2 li').removeClass('active'); jQuery(this).addClass('active'); return false; }); }); /*Create the dropdown bases thanks to @chriscoyier*/ jQuery("#catnav.secondary").append('<select class="resp-nav container">'); /* Create default option "Go to..."*/ jQuery("<option />", { "selected": "selected", "value" : "", "text" : "Select Menu" }).appendTo("#catnav.secondary select"); /* Populate dropdowns with the first menu items*/ jQuery("#catnav.secondary li ").each(function() { var href = jQuery(this).children('a').attr('href'); var text = jQuery(this).children('a').html(); var depth = jQuery(this).parents('ul').length; text = (depth > 1) ? ' — ' + text : text; text = (depth > 2) ? ' '+ text : text; text = (depth > 3) ? ' —'+ text : text; jQuery("#catnav.secondary select").append('<option value="' + href + '">' + text + '</option>'); }); /*make responsive dropdown menu actually work */ jQuery("#catnav.secondary select").change(function() { window.location = jQuery(this).find("option:selected").val(); }); /*cat nav menu*/ jQuery("#catnav ul li:has(ul)").addClass("parent"); jQuery(".catnav li").hover(function () { jQuery(this).has('ul').addClass("dropme"); jQuery(this).find('ul:first').css({display: "none"}).stop(true, true).slideDown(500);}, function () { jQuery(this).removeClass("dropme"); jQuery(this).find('ul:first').css({display: "block"}).stop(true, true).slideUp(1000); }); });
March 28, 2015 at 11:54 pm #5121Raja CRNKeymasterjQuery("#catnav.secondary").append('<select class="resp-nav container">'); /* Create default option "Go to..."*/ jQuery("<option />", { "selected": "selected", "value" : "", "text" : "Select Menu" }).appendTo("#catnav.secondary select"); /* Populate dropdowns with the first menu items*/ jQuery("#catnav.secondary li ").each(function() { var href = jQuery(this).children('a').attr('href'); var text = jQuery(this).children('a').html(); var depth = jQuery(this).parents('ul').length; text = (depth > 1) ? ' — ' + text : text; text = (depth > 2) ? ' '+ text : text; text = (depth > 3) ? ' —'+ text : text; jQuery("#catnav.secondary select").append('<option value="' + href + '">' + text + '</option>'); }); /*make responsive dropdown menu actually work */ jQuery("#catnav.secondary select").change(function() { window.location = jQuery(this).find("option:selected").val(); });
March 31, 2015 at 5:04 pm #5134JuanitoMemberI have not solved my problem
March 31, 2015 at 8:55 pm #5138Raja CRNKeymasterHello,
We don’t see that responsive menu in our browser. That could be returned from browser cache file. Try to open your site in different browser and also clear your browser cache.
April 1, 2015 at 10:05 pm #5142JuanitoMemberHi
I have Internet Explorer 11, but in Chrome the responsive menĂº has disappeared.
But the button to expand and collapse my own menĂº has disappeared too and my menu is expanded.
I need to fix this issue please.
April 3, 2015 at 10:18 pm #5147Raja CRNKeymasterHello,
The deletion of code will not cause any issues like you mentioned. However, We’ve checked your site menu and the expand/collapse works well.
-
AuthorPosts
Only Verified Customer of this Theme Can post reply to this Support Topic! .