Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #302922

    Hi there!

    How do I change the color of the Back to Top button? Also, how do I change it so it only shows up on mobile and tablet?

    Thanks!

    #303131

    Hey alexmasica!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed

    #scroll-top-link {
    color: #eeeeee;
    border: 1px solid #444444;
    background-color: red;
    }
    #scroll-top-link {
    color: blue;
    border: 1px solid green;
    background-color: orange;
    }
    @media only screen and (min-width: 990px) {
    #scroll-top-link { display: none; }}
    @media only screen and (max-width: 989px) {
    #scroll-top-link { display: block!important; }}

    Regards,
    Yigit

    #303492

    Thank you!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Back to Top button editing’ is closed to new replies.