Archived topic
Niche theme design bug
3 replies · Started by Martin on August 24, 2020
Hello,
please be informed that there is small design bug in Niche theme. Once you add product to the cart from product page there is green notification but design is broken on mobile devices. Please see attached picture.
https://paste.pics/49a7f113118b2591c0da75852a3eefd8
Thx
Martin
Hi there,
thats the way Woocommerce styles the Notice. It simply uses floats.
You could try some CSS like this:
@media (max-width: 769px) {
.woocommerce-message {
display: flex;
flex-direction: column-reverse;
}
.woocommerce-message .button.wc-forward {
align-self: flex-end;
margin-top: 10px;
}
}
Thanks David,
CSS works perfectly.
Martin
You're welcome :)