Site logo

Archived topic

What is the CSS to add a image to the"Back to Top Button"

3 replies · Started by Kevin on April 30, 2018

Viewing posts 1–4 of 4

What is the CSS to add a image to the"Back to Top Button"?

Hi Kevin,

You could do something like this:

.generate-back-to-top i {
    display: none;
}

.generate-back-to-top:before {
    content: url(URL TO YOUR IMAGE);
}

Try this:

.generate-back-to-top, 
.generate-back-to-top:visited,
.generate-back-to-top:hover {
    background-color: transparent;
}
This archived topic is closed to new replies.