Centering the widgets sela theme
-
Hi There!
I need help with css for centering the widgets in the footer area and also the social media icons at the bottom of each page/postThe blog I need help with is: (visible only to logged in users)
-
This CSS should center your three footer widgets:
#tertiary .widget-area { text-align: center; } @media screen and (min-width: 1180px) { #tertiary .widget_facebook_likebox { margin: 0px auto; width: 920px; } #tertiary .wpcom-instagram-images { margin: 0px auto; width: 1120px; } }I put the Instagram and Facebook declarations in a media query so they aren’t too wide at smaller screen sizes.
-
For the social-media sharing buttons below each post, try this:
.sharedaddy { text-align: center; } -
You are wonderful! thankyou, they both worked perfectly. While its still about centering il ask you as well, how about code for centering widgets in the right widget area? and the like button at the bottom of pages/posts? I am all about centering hey haha.
thankyou -
The “Like” buttons are in an iframe so I don’t think it’s possible to style them with CSS.
I’ll have a look at your right-sidebar widgets.
-
To centre your subscription button in the right sidebar, you need to target the widget’s class (.widget_blog_subscription) within the secondary ID (#secondary )
#secondary .widget_blog_subscription { text-align: center; } -
Looks like you have a second “follow” widget, which does the same thing as the first one. If you want to keep it, it’s a bit tricky to centre it, since it too is in an iframe.
I found this old suggestion from designsimply for a “cheat”:
.widget_follow_button_widget iframe { margin-left: 20px; } -
you are incredible! thankyou thankyou!
can I ask how you are so fab at coding? self taught or study? -
You’re very welcome!
can I ask how you are so fab at coding? self taught or study?
Some of both. ;-)
If you’d like to learn more CSS, you might like to check out this resource site my colleague Michelle and I put together:
https://cssworkshop.wordpress.com/
CSS is fun and powerful! Enjoy :-D
- The topic ‘Centering the widgets sela theme’ is closed to new replies.