• Can you please post the appropriate CSS to move the bar from the top to the bottom of the page? Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Salih K

    (@salihkulangara)

    .mtsnb {
    top: auto !important;
    bottom: 0 !important;
    }

    this is enough to show in the bottom, but if you assigned “Hide/Close Button” option to “Close Button” this is ok, but if it is “Toggle Button” you may have to check for other work around.

    Hi,

    Yeah needs a bit more than that, here is what I used:

    .mtsnb {
      bottom: 0;
      top: auto !important;
    }
    
    .mtsnb-hide,
    .mtsnb-show {
      right: auto;
      left: 20px;
    }
    
    body.has-mtsnb {
      padding-top: 0 !important;
    }
    
    .mtsnb-hidden.mtsnb-top {
      transform: translateY(+100%) translate3d(0, 0, 0);
    }

    Seemed to do the trick!

    K

    • This reply was modified 4 years, 11 months ago by the_lar.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Need some CSS to show bar at bottom’ is closed to new replies.