Home Forums WoodMart support forum Mobile menu customizations

Mobile menu customizations

Viewing 18 posts - 1 through 18 (of 18 total)
  • Author
    Posts
  • #276152

    ipcom
    Participant

    Hi there. How can i remove the background (and make it white) of the menu and category tabs in the mobile menu? I also want to remove the borders inside the mobile menu (borders of category lists, menu lists). I am attaching a screenshot.

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

    Hello,

    I saw the screenshot you attached.

    Please try adding the following Custom CSS in the Custom CSS for Mobile area under Theme Settings >> Custom CSS.

    .site-mobile-menu li a {
        border: none;
    }
    .icon-sub-menu {
        border: none;
    }
    .mobile-nav-tabs {
        border: none;
    }

    Best Regards.

    #276218

    ipcom
    Participant

    There is still background on the menu and categories and also on texts when they are selected. I want all to be white.

    #276227

    Hello,

    Please try adding the following Custom CSS in the Custom CSS for Mobile area under Theme Settings >> Custom CSS.

    .mobile-nav-tabs li {
        background-color: white;
    }

    Regards.
    Xtemos Studios

    #276231

    ipcom
    Participant

    How can i move the size guide above the swatches in single product?

    #276238

    Hello,

    Please try adding the following code to the functions.php file in the child theme.

    remove_action( 'woocommerce_single_product_summary', 'woodmart_sguide_display', 38 );
    add_action( 'woocommerce_single_product_summary', 'woodmart_sguide_display', 29 );

    Best Regards.

    #276339

    ipcom
    Participant

    Yes, but the old size guide is still in it’s previuos position. I mean now i have two size guides. How to remove the old one?

    #276416

    Hello,

    Please provide the URL of the product to check it myself and help you out accordingly.

    Best Regards.

    #276508

    ipcom
    Participant

    I have provided the url in the private section.

    #276542

    Hello,

    It seems that you haven’t added the code correctly.

    Please make sure that you have added the code exactly the same as I provide you. Then clear cache and check back.

    If the problem continues then provide with the admin panel login details of the website to check it myself and help you out accordingly.

    Best Regards

    #276805

    ipcom
    Participant

    I have provided the details in the private section.

    #276838

    Hello,

    Please provide with Cpanel or FTP details of the website to check it myself and help you out accordingly.

    Regards.
    Xtemos Studios

    #276844

    ipcom
    Participant

    i have already provided you with wp details, why you need ftp?

    #277085

    Hello,

    We want to add the code to achieve your requirement and if we have any issue then we can restore from FTP that’s why I asked.

    Best Regards.

    #277578

    ipcom
    Participant

    I have provided them in the private section.

    #277754

    Artem Temos
    Keymaster

    Try to replace that PHP code with the following one

    add_action( 'wp', function() {
    	remove_action( 'woocommerce_single_product_summary', 'woodmart_sguide_display', 38 );
    	add_action( 'woocommerce_single_product_summary', 'woodmart_sguide_display', 29 );
    } , 100);
    #277837

    ipcom
    Participant

    Great, that worked. Is there i way i could put white background onto the arrows for left right on the product pictures in mobile in single product?

    #277885

    Artem Temos
    Keymaster

    You are welcome! Please, create a separate topic for this request and provide some screenshots so we can better understand your request.

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