x

How can we change the button's image (arrows, play/pause) of a slideshow ?

How can we change the button's image (arrows, play/pause) of a slideshow?

Without paying/having their logo a 3rd party app?

I tried to override the CSS but it doesn't work.

They are quite big ugly and pixelized

Or could you just change it for something nice

3,995 Views
Message 1 of 8
Report
1 Best Answer

Best Answer

Try adding this to Settings > SEO > Header Code and publishing:

<style>
	#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span
	{
		background-image: none !important;
	}
	
	.fancybox-next span, .fancybox-prev span
	{
		color: #fff;
		font-weight: bold;
		font-size: 50px;
	}
	
	.fancybox-prev span:before, .fancybox-next span:before
	{
		position: relative;
		left: 25px;
	}
	
	.fancybox-prev span:before
	{
		content: "<";
	}
	
	.fancybox-next span:before
	{
		content: ">";
	}
</style>

View Best Answer >

3,923 Views
Message 9 of 8
Report
7 REPLIES 7
Square

If you post a link to the slideshow on your site along with what you want it to look like, someone might be able to offer a solution for you @jlie.

3,992 Views
Message 9 of 8
Report

not a slideshow, a Gallery, sorry for the confusion

3,965 Views
Message 9 of 8
Report
Square

That's ok, I think it could be resolved the same if you post a link to one.

3,950 Views
Message 9 of 8
Report

3,928 Views
Message 9 of 8
Report

Best Answer

Try adding this to Settings > SEO > Header Code and publishing:

<style>
	#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span
	{
		background-image: none !important;
	}
	
	.fancybox-next span, .fancybox-prev span
	{
		color: #fff;
		font-weight: bold;
		font-size: 50px;
	}
	
	.fancybox-prev span:before, .fancybox-next span:before
	{
		position: relative;
		left: 25px;
	}
	
	.fancybox-prev span:before
	{
		content: "<";
	}
	
	.fancybox-next span:before
	{
		content: ">";
	}
</style>
3,924 Views
Message 9 of 8
Report

It will probably take a little bit of tweaking to get it to look how you want, though. That basically replaces the default previous and next icons with white text > and <.

3,922 Views
Message 9 of 8
Report

thanks!

3,907 Views
Message 9 of 8
Report
This thread has been archived and locked. Please start a new thread if you would like to continue the conversation.