Okay
  Public Ticket #877165
Return to top button gone on mobile
Closed

Comments

  •  2
    Mari started the conversation

    Hi,

    I've moved my website to another cPanel account, but I think the 'return to top' button, which is normally in the right lower corner, has disappeared on mobile.

    On desktop it's active.

  •  1,611
    Barry replied

    Hi Mari,

    The scroll to top button is hidden by default in the theme (you can see it also on our theme demo.

    If you want to display the button also on mobile devices you can copy/paste the following in to the custom CSS textarea of the theme customizer:

    .scrollToTop {
        opacity: 0;
        visibility: hidden;
        position: fixed;
        display: block;
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        line-height: 48px;
        font-size: 20px;
        text-align: center;
        color: #ffffff;
        background-color: rgba(0, 0, 0, 0.2);
    }

    Best regards,
    Barry
    QreativeThemes.com  |  WordPress Themes

  •  2
    Mari replied

    Thanks, works perfect!