My theme automatically center aligns certain product info on the MOBILE product page, however it doesn’t do all of the info I want. Can someone please help me with coding the intro offer section and the inventory tracker to be centered too? The description and everything below the line can stay left aligned.
Hi! Thank you, that did work, however I’m hoping to only target the text with green background and the inventory notice. Is there any way to just target those elements?
Hi! Thank you, that did work, however I’m hoping to only target the text with green background and the inventory notice. Is there any way to just target those elements?
Solution
Please add the following CSS code to your assets/theme.css bottom of the file.
@media screen and (max-width: 767px) {
.feature-badge {
display: flex !important;
margin: 0 auto !important;
justify-content: center !important;
}
}
Thank you for your reply. I’m glad to hear that the solution worked well for you. If you require any more help, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated.