This topic has 2 replies, 2 voices, and was last updated 3 years, 7 months ago ago by Rose Tyler
How can i add back button on mobile header, Back button need to go back to previous search or previous page which is very important for shopping experience. thx
Hello,
Try to add the next code in Theme Options > Theme custom CSS > Global custom CSS:
@media only screen and (max-width: 1200px) {
.back-history {
display: block !important;
}
}
@media only screen and (max-width: 480px) {
.back-history {
margin-top: 30px;
}
}
Regards
You must be logged in to reply to this topic.Log in/Sign up