User avatar
carolinesoer
Posts: 12
Joined: Fri May 13, 2011 7:24 am
Location: Malaysia
Contact: Website

Moving controls

Hello again!

I'm almost done tweaking the galleries and am now trying to move the controls. I can see how to do that in the editor - I experimented with a bottom right Y offset position of 35 which seems to bring the controls into the area I'd like. My question is where in the CSS can I change this for my published galleries?

Thanks

Caroline
User avatar
RoadRash
Posts: 8249
Joined: Tue Jul 15, 2008 6:43 pm
Location: Fredrikstad, Norway
Contact: Website

Re: Moving controls

Hi Caroline,

The offsetY and offsetX settings for the controls canÔÇÖt be changed in the CSS. You need to do it in the highslide.config.js file.
The below code si the code for the controls and the thumbstrip (copied from your highslide.config.js file), and the two highlighted lines are the offsetX and offsetY for position of the controls:

Code: Select all

// Add the slideshow controller
hs.addSlideshow({
       //slideshowGroup: 'group1', 'group2',
	interval: 5000,
	repeat: false,
	useControls: true,
	fixedControls: 'fit',
	overlayOptions: {
		className: 'controls-in-heading',
		opacity: '0.75',
		position: 'bottom right',
		[hilight]offsetX: '0',[/hilight]
		[hilight]offsetY: '-15',[/hilight]
		hideOnMouseOut: false
	},
	thumbstrip: {
		mode: 'vertical',
		position: 'top',
		relativeTo: 'viewport'
	}

});
Hilde
Highslide Support Team

Overview of my Highslide sample pages: RoadRash.no
User avatar
carolinesoer
Posts: 12
Joined: Fri May 13, 2011 7:24 am
Location: Malaysia
Contact: Website

Re: Moving controls

Many thanks, Hilde
Caroline

Return to “Highslide Editor”