• I have a site for a crisis center and the tab (quick escape) needs to be on mobile, but I need it to display on the bottom instead of the side on mobile only. Will there be a feature to add mobile placement customization or should this be done via CSS?

    • This topic was modified 8 months, 3 weeks ago by kimkzoo.

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

Viewing 1 replies (of 1 total)
  • Plugin Author srumery

    (@srumery)

    Well, hello there, @kimkzoo! 😉

    Moving the tab to the bottom is not an option in the settings so it must be done using CSS only. Give this a shot and let me know how it goes.

    @media screen and (max-width: 767px) {
    a#rum_sst_tab {
    position: fixed;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    top: auto;
    right: auto;
    }
    }
Viewing 1 replies (of 1 total)

The topic ‘Mobile View on Bottom’ is closed to new replies.