Title: Center Sharing Container
Last modified: August 21, 2016

---

# Center Sharing Container

 *  Resolved [SIMedia](https://wordpress.org/support/users/simedia/)
 * (@simedia)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/center-sharing-container/)
 * Question 1: Can I float or position the sharing container on the center of the
   post/page, rather than to the left? I found “sharing container” in the front.
   css file and tried both a “float: right” and “float: center” command to test,
   but neither worked. Is there a position code I can use?
 * Question 2: I have “disable social sharing” on the page I use as a home page,
   and, home page is not enabled for social sharing in settings, and yet the social
   sharing container still appears, even after clearing cache. How to fix? Update:
   Discovered that each time I edit the page and check the box “disable social sharing”
   and then update, the box unchecks itself. Repeated checking and saving does not
   let me retain that “ticked box.”
 * Question 3: When the share count goes over 4 digits, the numbers split into 2
   lines and the icon is no longer aligned. Is there a way to change the share count
   to “K” instead of thousands? For instance my FB share on a page is 200 but my
   Stumble share is 123235, and I’d like that number to show 12K+ or something like
   that, so the icons remain in proper horizontal alignment.
 * [https://wordpress.org/plugins/super-socializer/](https://wordpress.org/plugins/super-socializer/)

Viewing 7 replies - 1 through 7 (of 7 total)

 *  Plugin Author [Rajat Varlani](https://wordpress.org/support/users/the_champ/)
 * (@the_champ)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/center-sharing-container/#post-4910827)
 * 1. To position the sharing interface in center of page/post, add following css
   in `front.css` file:
 *     ```
       .the_champ_sharing_container{
           padding-left: 12%
       }
       ```
   
 * You can adjust the padding according to your requirements.
 * 2. I am not able to replicate the “checkbox unchecking itself” problem. To disable
   sharing on homepage, search following code in “wp-content/plugins/super-socializer/
   inc/social_sharing.php”
 * `if(isset($sharingMeta['sharing']) && $sharingMeta['sharing'] == 1 && !is_front_page()){`
 * Replace the code searched above with following:
 * `if(isset($sharingMeta['sharing']) && $sharingMeta['sharing'] == 1){`
 * Save the file back.
 * 3. Search following code in file “wp-content/plugins/super-socializer/js/front/
   sharing/sharing.js”:
 * `}else if(sharingCount > 999 ){`
 * Place following code after the code searched above and save the file:
 * `sharingCount = Math.floor(sharingCount/1000) + 'K';`
 *  Thread Starter [SIMedia](https://wordpress.org/support/users/simedia/)
 * (@simedia)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/center-sharing-container/#post-4910953)
 * 100% success with all your tips. Thank you SO very much. Excellent support — 
   again!
 *  Plugin Author [Rajat Varlani](https://wordpress.org/support/users/the_champ/)
 * (@the_champ)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/center-sharing-container/#post-4910954)
 * Pleasure is mine 🙂
 *  Thread Starter [SIMedia](https://wordpress.org/support/users/simedia/)
 * (@simedia)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/center-sharing-container/#post-4910990)
 * Just made a PayPal donation. Can’t associate our user names with it!
 *  Plugin Author [Rajat Varlani](https://wordpress.org/support/users/the_champ/)
 * (@the_champ)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/center-sharing-container/#post-4910991)
 * Can you share your website url and explain the issue in detail?
 *  Thread Starter [SIMedia](https://wordpress.org/support/users/simedia/)
 * (@simedia)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/center-sharing-container/#post-4910992)
 * Sorry, I wasn’t clear! You helped me solve my issues as shown above (the 3 questions)
   and I was grateful. Then I noticed you had a PayPal donation button on my plug-
   in (maybe it was on the recent update or I just didn’t notice it before now),
   so I used it to make the donation today, but noticed it doesn’t associate the
   WordPress username with the donation, so you wouldn’t know I was thanking you
   for the support you’ve already given me in this forum!
 *  Plugin Author [Rajat Varlani](https://wordpress.org/support/users/the_champ/)
 * (@the_champ)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/center-sharing-container/#post-4910994)
 * Okay 🙂
    Yea, I saw your company name in the PayPal donation “Spa Index Media”.
   Will include this WordPress username association too in upcoming release. Thanks
   for donation.

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Center Sharing Container’ is closed to new replies.

 * ![](https://ps.w.org/super-socializer/assets/icon-128x128.png?rev=1866723)
 * [Social Share, Social Login and Social Comments Plugin - Super Socializer](https://wordpress.org/plugins/super-socializer/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/super-socializer/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/super-socializer/)
 * [Active Topics](https://wordpress.org/support/plugin/super-socializer/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/super-socializer/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/super-socializer/reviews/)

 * 7 replies
 * 2 participants
 * Last reply from: [Rajat Varlani](https://wordpress.org/support/users/the_champ/)
 * Last activity: [11 years, 10 months ago](https://wordpress.org/support/topic/center-sharing-container/#post-4910994)
 * Status: resolved