Ahoy,
My mobile socket looks off. Is there a way to move the social icons in it for mobile view and center the copyright?
Hey mcraig77,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 767px) {
#footer .copyright {
display: block;
min-width: 100%;
text-align: center;
}
}
Best regards,
Rikard
That code didn’t do anything. Please Advise.
Hi,
Try adding this css code:
@media only screen and (max-width:767px) {
#socket .copyright {
display: block;
float: none;
padding-top: 40px;
text-align: center;
width: 100%;
}
#top #wrap_all #socket .social_bookmarks {
float: none;
margin: 0;
position: absolute;
text-align: center;
top: 10px;
width: 100%;
}
#socket .social_bookmarks li {
float: none;
display: inline-block;
}
}
Hope this helps :)
Best regards,
Nikko
Perfect! Thanks!