Home › Forums › Azuma Pro › Offer Bar on Mobile › Reply To: Offer Bar on Mobile
September 20, 2020 at 10:16 am
#12159
Yazmin
Keymaster
To make the offer bar widget area appear on mobile, add either of these snippets of CSS to Customize > Additional CSS
To display all on one line similar to how it appears on desktop, use this:
@media (max-width:768px) {
#site-usp,
#site-usp .container {
display: flex;
}
}
or to display each item on separate lines, use this:
@media (max-width:768px) {
#site-usp,
#site-usp .container {
display: block;
}
}