Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: Search button #1427
    kennetheknes
    Participant

    I downloaded the updated version. The image of the magnifying glass har been made smaller so that more of the button works, but the image still covers the center of the button.

    It is better, but not a complete fix.

    in reply to: Search button #1357
    kennetheknes
    Participant

    Thanks for the response.

    I would like everything to look just like it is, but have the whole button work as trigger for the search function, the green square and the magnifying glass.

    Thanks.

    in reply to: Menu opens and closes #1354
    kennetheknes
    Participant

    I didn’t find anything in the section-featured.php file, but I managed to fix the problem. In navigation.js I changed this code:

    $(document).ready(function(){
    $(“.product-cat”).hide();
    $(“button”).click(function(){
    $(“.product-cat”).toggle();
    });
    });

    to this:

    $(document).ready(function(){
    $(“.product-cat”).hide();
    $(“.product-btn”).click(function(){
    $(“.product-cat”).toggle();
    });
    });

    That way the .click function only targets the ALL CATEGORY button and not every button object.

Viewing 3 posts - 1 through 3 (of 3 total)