Hi, When I’m looking at the website on my desktop the social media buttons(facebook, twitter, google plus) are inline. But when I look at them on my iPhone, they’re stacked. Is there a way to always have them inline regardless of the screen dimensions?
Thanks,
Adrian
1 Answers
To resolve this problem, you can log in to Dashboard > Theme > Customize > General Settings > Add the following code in the “Header Script”
<style>
@media (max-width:480px ) {
.social-buttons li {
float: left;
}
.google_plus {
margin-left: -23px;
}
}
</style>
Hope this helps !
Regards,
Dominic
Please login or Register to submit your answer