• Resolved supermemo

    (@supermemo)


    Hi,
    I cannot find the way to edit the awful label (“Filtro>>”) that replaces the shop sidebar when it becomes folded in mobile devices. It is really awful and misleading. I think a mean visitor could think that it is a piece of code left visible, I bet near nobody could imagine that it encloses a search by category within our shop. Unfortunately I can’t find the way to upload here a screenshot.
    Thanx in advance,
    Memo

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • danamv

    (@danamv)

    Hello @supermemo,

    We do not usually provide custom coding, but for this request, we will consider it.
    Unfortunately, you can’t modify it directly from the Customizer, but if you want to style it so it looks more like a button, you can add the following code into Customizer -> Additional CSS, and modify the values to please your needs:

    @Media only screen and (max-width: 767px)
    {
    	.nv-woo-filters .nv-sidebar-toggle {
        color: var(--nv-text-color);
        background-color: orange;
        border: 1px solid #aa8d56;
        outline: medium none;
        padding: 2px;
        text-decoration: none;
    }
    }

    Or if you want to hide it completely when it becomes folded, you can paste this code.

    @Media only screen and (max-width: 767px)
    {
    	.nv-woo-filters .nv-sidebar-toggle {
       display: none !important;
    }
    }

    I hope it will help! Please let us know if you have any more questions.

    Thread Starter supermemo

    (@supermemo)

    @danamv
    scuse me for the late response.
    I tested your proposed solution, and it works.
    However, sadly, I decided to change theme because I could not manage to get yours to display my shop page. No way. My shop page contains images and text, SEO optimized. With your very beautiful and good crafted theme I could only display the default woocommerce shop page, that is to say, the container for the products / categories, which I cannot edit. I tried everything to the point to gave away. Other themes, for example Astra, displays my shop page from the beginning and without issues and without any further customization or specific code or plugin. I appreciate the lightness, speed and good SEO characteristics of your theme.
    Thank you very much.

    danamv

    (@danamv)

    Hi @supermemo,

    Thank you for considering using Neve.

    Best regards.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Sidebar toggle text – mobile’ is closed to new replies.