Archived topic
Switched to Flexbox - Menu now has Double Arrows
5 replies · Started by Lydia on March 7, 2021
Hello, I recently switched from Floats to Flexbox and most everything looks great. However, the main menu now has two drop-down arrows instead of one, and there are two little file icons next to the category tags instead of one. Is this something you can help me with? My website is alittlelibrary.com. Thanks!
This CSS should help
/*Search Icon fix*/
.gp-icon.icon-search:before,
.gp-icon.icon-arrow-up:before {
content: none !important;
}
/*Search Icon Mobile Menu fix*/
button.search-submit {
display: none;
}
Perfect! Thanks,
Hi there,
Karsten's CSS shouldn't be necessary when you switch from floats to flexbox as long as your CSS cache is cleared after the switch. (I see you're using autoptimize).
Glad you got it sorted. :)
Ah, good to know. Thank you both.
No problem. :)