making hr full width
-
Hi in the bottom of my site above the social widget I have a hr, here:
https://kahol.co.il/
how can I make it take the full width of my site?
thanks!The blog I need help with is: (visible only to logged in users)
-
Hi @moshekahol,
In order to get the top border of the social icons widget to display across the full width of the screen, you’ll need to use this absolute positioning trick:
.home #wpcom_social_media_icons_widget-10 { position: absolute; width: 100%; left: 0; bottom: 0; } .widget-footer-area { padding-bottom: 220px; position: relative; }With the above CSS in place, you’ll also need to add some margin-top to .site-info (I can see that you’ve already added a negative value to that element in your custom CSS):
.site-info { margin-top: 30px; } -
Thanks Siobhyb, it worked :) you are so helpful!
I will be happy if you can take a look on s related issue here: https://en.forums.wordpress.com/topic/site-margins?replies=1
thanks! -
-
-
- The topic ‘making hr full width’ is closed to new replies.