Home Forums WoodMart support forum Change Back to Top Button Reply To: Change Back to Top Button

#199645

Hello,

To change the scroll to the top button icon with an image you need to add the following Custom CSS in the Global Custom CSS area under Theme Settings >> Custom CSS.

body .scrollToTop::after {
	content: "";
	background: url(' ') no-repeat;
	background-size: contain;
	height: 20px;
	width: 20px;
	margin-top: 15px !important;
}

You can add the URL of the image in the URL tag.

Best Regards.