Archived topic
Mobile Top Bar Adjustments
1 reply · Started by Matt Stern on January 31, 2019
Hi Guys,
The Top Bar links on mobile are all scrunched up and pushed over to the right.
Is there a way to get them all on one line? Or perhaps two of them stacked on the left, and two of them stacked on the right?
Thanks for all the help,
Matt
Hi there,
This CSS alone will remove the padding and stop them from being scrunched up:
@media (max-width: 768px) {
.inside-top-bar {
padding: 5px 0;
}
}
Doesn't look like theirs room for them to be inline.
And to stack them in two columns is tricky with the current markup. Would be simpler if each of the links occupied their own widget. Let me know