Hey Guy,
I need to add social icons from footer to widget above it. Please refer.
I copied the code but its breaking like anything.
Can you please help me??
Oopps, sorry for that :D
http://rc.teamchat.com/controls-admin/
Hey!
Please add following code to Text widget in Appearance > Widgets – http://pastebin.com/krwK2wSS
then add following code to Quick CSS in Enfold theme options under General Styling tab
#footer .social_bookmarks li { clear: none !important; }
Cheers!
Yigit
Can you please tell me hoe to center that block, exactly between page???
Hi!
Please add following code to Quick CSS
#footer #text-3 {
padding: 0 115px;
}
Best regards,
Yigit
Hey man,
It wont work when screen size is small. Wont work responsively. I have added you can check it.
Anything for making it responsive??
Hi!
Seems like you have used media queries and percentage instead of fixed pixels and that did the job. Except for tablets. You can adjust your code to following one to center it on tablets as well
@media (max-width: 950px) and (min-width: 600px) {
#footer #text-3 {
padding: 0 40%;
}}
Best regards,
Yigit