Home Forums WoodMart support forum Browse categories bar

Browse categories bar

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #18197

    MAYZEL
    Participant

    how do I have the categories bar stay up on the actual product page? so its not in the way.

    Its perfectly fine on the shop pages

    Attachments:
    You must be logged in to view attached files.
    #18205

    Artem Temos
    Keymaster

    Hello,

    Do you mean you want to hide this categories dropdown on the single product page only? And it should be displayed on hover, right?

    Regards

    #18209

    MAYZEL
    Participant

    yes please on on the single product page, as it gets in the way of the photo.

    Yes I absolutely love this theme. great theme. very good for clothing site like mine

    #18212

    Eric Watson
    Participant

    Hello,

    Try to add the following code snippet to the Custom CSS area in Theme Settings.

    .single-product .vertical-navigation.opened-menu .categories-menu-dropdown {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;   
          top: 125%;
    }
    .single-product .vertical-navigation.opened-menu:hover .categories-menu-dropdown {
        visibility: visible;
        opacity: 1; 
        top: 100%;
        pointer-events: visible;
        -webkit-transition:
            opacity .2s ease,
            visibility .0s ease,
            top .2s ease;
        transition:
            opacity .2s ease,
            visibility .0s ease,
            top .2s ease;
    }
    

    Kind Regards
    XTemos Studio

    #18268

    MAYZEL
    Participant

    worked thank you

    #18278

    Artem Temos
    Keymaster

    You are welcome!

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

The topic ‘Browse categories bar’ is closed to new replies.