XF 1.3 Centering Sharing options on Sidebar

Daniel-SP

Well-known member
Hello,

I have updated the sidebar sharing options for each social network to show like balloons. I like the final result BUT I would like to center the buttons on the widget area.

here is the css I edited so far:

.sidebar .sharePage .shareControl
{
padding: 3px;
margin-top: 0px;
float: left;
}

Its looking perfclty except for the aligment. Just centering those ligned buttons would solve my problems.. but as far as I searched, its not possible to align a "float:left" element..

Thanks in advance,
 

Attachments

  • SocialShare.webp
    SocialShare.webp
    4.3 KB · Views: 9
Last edited:
Code:
.sidebar .sharePage .shareControl {
text-align: center;
}

Just tried it quickly on my own forum. Seems to work.

Another way, that I don't recommand:
Edit the template: sidebar_share_page
and add <center> and </center> HTML tags to center what you want in this template to be center.
(y)
 
Last edited:
You CSS suggestion would work but the point is that I'm using a float: left; to position the icons side by side.. The text-align dont work on this case..

I will wait for antoher CSS suggestion instead of edit the template, hehe
 
Top Bottom