On mobile view, the Facebook icon is not centered. Could you please check and advise?
Hi bemodesign,
Please try to add this CSS code in Enfold > General Styling > Quick CSS:
@media only screen and (max-width:767px) {
#socket .copyright {
min-height: 30px;
line-height: 30px;
}
#socket .social_bookmarks li {
top: 0;
}
}
Hope it helps.
Best regards,
Nikko
Nope, still shows up on the right side on mobile. Can we get it in the center of the page?
Can we get it in the center of the page?
On mobile view it is not centered.
Hi bemodesign,
Can you try to remove the code I gave and replace it with:
@media only screen and (max-width:767px) {
#socket .container {
display: flex;
flex-direction: column-reverse;
}
#socket .copyright {
display: block;
float: none;
text-align: center;
min-height: 30px;
line-height: 30px;
}
#socket .social_bookmarks li {
top: 0;
}
}
Best regards,
Nikko
Agh! It is centered on Mobile, but not Desktop! Can you give me code for desktop also?
Hi,
Try adding this CSS for centering the icon on desktops in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
@media only screen and (min-width: 768px) {
#top #socket .social_bookmarks {
width: 100%;
top: -30px;
}
#top #socket > .container {
max-height: 60px;
}
}
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.
Best regards,
Mike