Search…

X3 Photo Gallery Support Forums

Search…
 
User avatar
Eddieative
Topic Author
Posts: 11
Joined: 03 Apr 2011, 10:49

Social Thing stays in top of audio player

05 Feb 2013, 13:17

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?
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13997
Joined: 30 Sep 2006, 03:37

Re: Social Thing stays in top of audio player

06 Feb 2013, 00:31

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
 
User avatar
Eddieative
Topic Author
Posts: 11
Joined: 03 Apr 2011, 10:49

Re: Social Thing stays in top of audio player

08 Feb 2013, 21:34

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?
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13997
Joined: 30 Sep 2006, 03:37

Re: Social Thing stays in top of audio player

08 Feb 2013, 23:36

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.
 
User avatar
Eddieative
Topic Author
Posts: 11
Joined: 03 Apr 2011, 10:49

Re: Social Thing stays in top of audio player

10 Feb 2013, 21:26

Dear mjau-mjau,

It worked like a charm!

Thank you so much for your quick and awesome support.