knorke wrote:i use windows.
If you are using Chrome, Firefox, or Internet Explorer (10+, can't be fucked to deal with pre-IE10) in windows, it displays correctly. One would assume Opera would display correctly as well considering that it uses Blink now iirc.
You should check your javascript settings to see if you have something limited. fitvids.js is uses to dynamically scale the youtube player and everything is percentage based so that it is flexible (you can do this by setting a max-width in pixels, then an actual width of percentage. IE max-width 560px, width 100% << this element will scale up to 560px if it can, but below that it will be flexible).
The social media bar does not connect anything to anything, it simply supplies a shortcut to the sharing section of the service you might want to share it to. There is no connection made. It's exactly the same as you logging into G+ or facebook or reddit or whatever, and pasting a link into the share box. That is exactly what this does. Look at the code!
One guess as to what this does...
Code: Select all
<a href="http://www.facebook.com/sharer/sharer.php?u=<?php echo $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ?>" onclick="javascript:void window.open('http://www.facebook.com/sharer/sharer.php?u=<?php echo $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ?>','1373305744027','width=500,height=550,toolbar=0,menubar=0,location=0,status=1,scrollbars=1,resizable=1,left=0,top=0');return false;" alt="Share on Facebook!">
Please tell me I don't need to explain this... I would think the URL would make it quite plain.
https://docs.google.com/file/d/0B25BbZx ... RtX0E/edit
That's the full code of that bar. You'll notice that the little pictures are simply links, nothing more. Javascript is used to open a window that conforms with the size of the sharing box of each service. I could have it open in a full page new tab, but that would be ugly.
This is what happens when I click on the G+ button for example:
