Archived topic
Lite Social Media Icons Widget Centers on Mobile in Top Bar
3 replies · Started by Morgan on December 10, 2022
Hi There -
I am trying to force left align my lite social media icons in the top bar on mobile to make room for a search icon in the upper right-hand corner. But despite my best efforts, those little icons center align every stinking time. I can't seem to figure out the CSS override to make it happen. Help? Site here.
Hi there,
add you other widget for the search icon.
Then add this CSS:
@media (max-width: 768px) {
.top-bar .inside-top-bar {
justify-content: space-between;
}
}
Perfect! Thank you! Worked like a charm.
Glad to hear that!