Juanito

Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: I want to hide menu responsive #5142

    Juanito
    Member

    Hi

    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.

    in reply to: I want to hide menu responsive #5134

    Juanito
    Member

    I have not solved my problem

    Responsive Menu

    in reply to: I want to hide menu responsive #5109

    Juanito
    Member

    Sorry, 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) ?   ' &nbsp;&mdash; ' + text : text;
    	text = (depth > 2) ?   '&nbsp;&nbsp;'+ text : text;
    	text = (depth > 3) ?   '&nbsp;&nbsp;&nbsp;&mdash;'+ 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);
     });
    });
Viewing 3 posts - 1 through 3 (of 3 total)