Archived topic
Tob bar widgets allignment
20 replies · Started by Omar on June 21, 2021
Hi there,
instead of using the Text Block to add your links, use a GB Headline Block, which can be set to the P element, and in Spacing settings you can set the bottom margin to 0 - this will help align those links.
Thank you David,
It looks better now, but I am not able to align it to left or right, is there a way to add margin to GB Grid?
One more thing, is there a way to hide the search icon from site navigation?
For search Icon, I already hide it. using this code:
#site-navigation .menu-bar-items .search-item {
display: none;
}
Thank you
I am just stock with the alignment things.
You have this CSS:
.header-links-wrapper {
display: flex;
flex-wrap: wrap;
flex: 1;
}
Change it to:
.header-links-wrapper {
display: flex;
flex-wrap: wrap;
flex: 1;
align-items: center;
}
It doesn't change the alignment.