Archived topic
Mobile Header - inserting social icons to the right of the site logo
3 replies · Started by Roger on July 10, 2019
Viewing posts 1–4 of 4
Hi, I have used the inside_mobile_header hook to insert social icons next to the site logo. However, they persist in showing up to the left of the logo. How do I force them to the right so that the logo is first?
Hi there,
Can you try modifying your existing CSS:
@media (max-width: 768px) {
.mobile-header-social-icons {
text-align: right;
line-height: 60px;
padding: 0 1%;
float: right;
}
}
To this?
@media (max-width: 768px) {
.mobile-header-social-icons {
line-height: 60px;
padding: 0 1%;
order: 2;
}
}
Let me know :)
Perfect, that did the trick! Thanks, Leo :)
No problem :)
This archived topic is closed to new replies.