I am wondering if there is a way to move the Social Media icons from the bottom of the Main Menu to the top of it so they will appear directly under the logo. And also how to increase their size.
1 Like
Sorry you are facing this issue, it would be my pleasure to help you.
Welcome to the Shopify community! ![]()
Thanks for your good question.
Please share your site URL,
I will check out the issue and provide you a solution here.
Please add below css in bottom of assets/theme.scss.css file
.site-nav {
display: flex;
flex-wrap: wrap;
flex-direction: column-reverse;
}
.social-links {
margin-bottom: 10px;
}
.social-links .icon {
width: 30px;
height: 30px;
}
Thank you.
1 Like
Thank you that works perfectly!