Reputation: 13
Is there any way to add social icon links in navigation for all the breakpoints using elementor in WordPress. I have managed to display them in a column on desktop but I am not able to display in mobile navigation
Upvotes: 1
Views: 1216
Reputation: 128
If you need icons to stay in a row with your logo(or any other thing) and not make a new row.
Well you have 2 options:
You can create a template (sections) and make put icons there, then add the template using shortcode widget. Just keep in mind, your section in header must have only 1 column and the widgets inside must be set to "inline".
You can have 2 or more columns and then add css class to each, then you will have to set "flex" in custom css. For example, you have columns with these css classes: .column1 & .column2
Now we go for custom CSS (doesn't matter on which widget you write this custom css):
.column1 {flex:1;}
.column2 {flex:3;}
Change number in flex based on what you need.
Upvotes: 1