Home Forums WoodMart support forum Update6.0.1: mobile nav , costum css doesn't work

Update6.0.1: mobile nav , costum css doesn't work

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

    reinwz
    Participant

    Hello,

    after the newest update to 6.0.1 some of the costum css code doesn’t work any longer.

    1.) mobile nav menu from the right:
    Want we want: Menu slide-in from right on desktop
    What we get: Menu slide-in from left on desktop

    /* Menu von rechts _ 2021-02*/
    .mobile-nav {
    	left: auto;
    	right: 0;
    	transform:translate3d(380px, 0, 0);
    	-webkit-transform:translate3d(380px, 0, 0);
    	-ms-transform:translate3d(380px, 0, 0);
      	-sand-transform:translate3d(380px, 0, 0);
    }
    
    .act-mobile-menu .mobile-nav {
    	transform:translate3d(0, 0, 0);
    	-webkit-transform:translate3d(0, 0, 0);
    	-ms-transform:translate3d(0, 0, 0);
    	-sand-transform:translate3d(0, 0, 0);
    }

    2.)burger icon different color
    we use this global css to get the icon red:
    What we want: burger icon red color
    What we get: burger icon default color

    
    /* Burgermenustriche rot _ 2021-01 */ 
    body .woodmart-burger-icon .woodmart-burger {
    color: #e30613;
    }
    #280517

    Bogdan Donovan
    Keymaster

    Hi,

    1. Please replace the previous custom code with the following one:

    body .wd-side-hidden.wd-left {
    	right: 0;
    	left: auto;
    	-webkit-transform: translate3d(100%,0,0);
       transform: translate3d(100%,0,0);
    }
    
    body .wd-side-hidden.wd-left {
    	right: 0;
    	left: auto;
    	-webkit-transform: translate3d(100%,0,0);
       transform: translate3d(100%,0,0);
    }
    
    body .wd-side-hidden.wd-opened {
    	-webkit-transform: none;
       transform: none;
    }

    2. It will be fixed in the next theme update and following custom code will be working again.

    Regards

    #280537

    reinwz
    Participant

    thanks, works fine!
    looking forward to the update.

    #280692

    Artem Temos
    Keymaster

    We have released the update. Try to update the theme and clear your browser cache.

    #280732

    reinwz
    Participant

    works, thanks mate.
    wish you a quiet weekend!

    #280741

    Artem Temos
    Keymaster

    Thank you! Let us know if you have any additional questions.

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

The topic ‘Update6.0.1: mobile nav , costum css doesn't work’ is closed to new replies.