Hey,
-
How can I remove bread crumps from desktop ONLY?
-
How can I move the ‘Copyright’ to the left so it would be aligned with the rest of the menu items? (Mobile only)
Password: SAWBAW
Hey,
How can I remove bread crumps from desktop ONLY?
How can I move the ‘Copyright’ to the left so it would be aligned with the rest of the menu items? (Mobile only)
Password: SAWBAW
@Pam9 - for breadcrumb, please add this css to the very end of your theme.css file and check, copyright is already on left only
@media screen and (min-width: 750px){
.breadcrumb {display: none;}
}
You will need to add the following code snippet to the very bottom of your theme.css file. This code snippet will hide breadcrumbs on Desktop, and will align your “copyright” with your footer’s menu items.
@media screen and (max-width: 750px) {
.footer-copyright.body-text-sm {
padding-left: 30px;
}
}
@media screen and (min-width: 750px) {
.breadcrumb {
display: none;
}
}
Hey @Crimson_Shot ,
Thank you for the reply. The breadcrump has been removed, the copyright is still at the same place though.
Hey @suyash1 ,
Thank you for the reply. The copyright on mobile is not aligned with the rest of the menu items.
Hey @Pam9 . Try this instead of the first part I shared with you:
@media screen and (max-width: 750px) {
.footer-copyright {
padding-left: 30px;
}
}
Still doesn’t work.