Page 1 of 1

Social Thing stays in top of audio player

Posted: 05 Feb 2013, 13:17
by Eddieative
Hi,

I added the Social Thing code but the buttons stay in top of the audio player while in the demo version, the audio player goes in the top of those buttons!

could you please help me to fix this issue?

my website: http://eddieative.com/cont/

Another issue:
how to adjust the spacing between the thumbnails?

Re: Social Thing stays in top of audio player

Posted: 06 Feb 2013, 00:31
by mjau-mjau
Eddieative wrote:I added the Social Thing code but the buttons stay in top of the audio player while in the demo version, the audio player goes in the top of those buttons!
I think it only overlaps the volume slider, which can be accessed anyway. If you want to change it, you need to change the CSS for the position of the social-thing. For the CSS that you pasted into settings -> custom css -> flash gallery css, you can change the positioning:
Code
right: 120px;
top: 10px;
Try setting top to -2px, or you can set the right to something much higher, moving it to the left.
Eddieative wrote:how to adjust the spacing between the thumbnails?
This is in your admin -> theme -> thumbnails.frame.space

Re: Social Thing stays in top of audio player

Posted: 08 Feb 2013, 21:34
by Eddieative
Thank you for your reply!

It didn't look good when I changed its position. I tried different positions but it looks unprofessional.

why the social thing shows in the back in the demo website, but it shows in the top in my website?

Re: Social Thing stays in top of audio player

Posted: 08 Feb 2013, 23:36
by mjau-mjau
Eddieative wrote:why the social thing shows in the back in the demo website, but it shows in the top in my website?
Good question. This is because we added a custom JS to the counter html code in our demo.
Code
function togglesocial(bool){
	if($("#social-thing").length != 0) {
	  	if(bool){
			$("#social-thing").show();
		} else {
			$("#social-thing").hide();
		}
	}
}
This JS should probably be available globally in the functions.js file though ... Just add the code above to your iv-includes/assets/js/functions.js.

Re: Social Thing stays in top of audio player

Posted: 10 Feb 2013, 21:26
by Eddieative
Dear mjau-mjau,

It worked like a charm!

Thank you so much for your quick and awesome support.