Hi at Kriesi,
in the http://kriesi.at/themes/enfold-photography/ demo the social media buttons in the sidebar are disappearing on mobile. Can I remove that functions, so that they are shown?
Thanks!
Regards
Sigmund
Hey Sigmund!
Add this to your custom CSS.
.responsive.html_header_sidebar #top #header .social_bookmarks {
display: block !important;
}
Regards,
Elliott
Thanks! Is there a way that they are shown below the main content in the footer? Right now they are in the header.
Best Regards
Hi!
I edited theme options and chose to display Footer socket as well and then added following code to Quick CSS in Enfold theme options under General Styling tab to remove socket only on desktop and copyright text globally, since you created your own using footer widgets.
@media only screen and (min-width: 768px) {
#socket { display: none !important; }}
#socket .copyright {
display: none!important;
}
Please review your website now
Regards,
Yigit
Thanks, Yigit, I have cleared the cache but cannot see any social icons in the footer. To clarify: I mean the three social icons in the sidebar.
Regards
Sigmund
Hey!
It seems like you have edited your pages and chose not to display footer socket on certain pages. Please check out following page that is in private content field :)
Regards,
Yigit
Yes, great, now I see. Is it possible to align them to the right? I have tried text-align: right;
but this did not worked out.
Best Regards
Sigmund
Hey!
They are already right aligned actually. Can you please post a screenshot and show the changes you would like to make so we can make sure that we are on the same page?
Regards,
Yigit
Sorry, stupid me, I mean to the left.
Regards
Sigmud
Hey!
Please remove following codes
.foot-container {
width: 90px !important;
}
.foot-social-icons {
display: none;
}
and add following one
.foot-social-icons {
float: left;
}
Best regards,
Yigit
Thanks!