Tagged: header, social icons
Hey guys,
on an Enfold website we use the Burger Menu on desktop view as well.
I’d like to display the Social Icons next to Burger-Menu & Search-Icon which is easily done via Theme settings “show in header” (German version: “im Kopfbereich anzeigen”).
Only problem: By default those icons are inserted on the right-hand side; is there an uncomplicated way to move them to the left instead (and maybe also remove the thin vertical line in between)?
Thx!
Hey micscr,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
CSS Snippet:
/* CSS - */
#top #header .main_menu {
display: flex !important;
flex-direction: row-reverse;
}
#top #header .avia-menu {
border: none !important;
margin: 0;
padding: 0;
}
Best regards,
Vinay