EddyModde
Posts: 3
Joined: Mon Dec 21, 2009 7:10 pm

Gallery doesn't look like in Highslide Editor

Hi, I have little knowledge of html, so I was happy with the Highslide Editor. My gallery works and looks great in the Highslide Editor. But on my page it doesn't look the same. I work with wordpress 2.8.
This is the page where I have the gallery http://www.horsemansretreat.nl/?page_id=16

Can you tell me what I did wrong?

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

Re: Gallery doesn't look like in Highslide Editor

Hi Eddy,

The paths to all the highslide files between the head tags are wrong.
You have this:

Code: Select all

<script type="text/javascript" src="highslide/highslide-with-gallery.js"></script>
<script type="text/javascript" src="highslide/highslide.config.js" charset="utf-8"></script>
<link rel="stylesheet" type="text/css" href="highslide/highslide.css" />
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" href="highslide/highslide-ie6.css" />
<![endif]-->
Try with this:

Code: Select all

<script type="text/javascript" src="http://www.horsemansretreat.nl/wp-content/uploads/highslide/highslide-with-gallery.js"></script>
<script type="text/javascript" src="http://www.horsemansretreat.nl/wp-content/uploads/highslide/highslide.config.js" charset="utf-8"></script>
<link rel="stylesheet" type="text/css" href="http://www.horsemansretreat.nl/wp-content/uploads/highslide/highslide.css" />
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" href="http://www.horsemansretreat.nl/wp-content/uploads/highslide/highslide-ie6.css" />
<![endif]-->
You also need to change the path to hs.graphicsDir inside the highslide.config.js file.
Find this line inside the highslide.config.js file:

Code: Select all

hs.graphicsDir = 'highslide/graphics/'; 
And change it to this:

Code: Select all

hs.graphicsDir = 'http://www.horsemansretreat.nl/wp-content/uploads/highslide/graphics/'; 
Hilde
Highslide Support Team

Overview of my Highslide sample pages: RoadRash.no
EddyModde
Posts: 3
Joined: Mon Dec 21, 2009 7:10 pm

Re: Gallery doesn't look like in Highslide Editor

Thank you so much for the quick reply. The visual is ok now, but the large images won't show. They did before I made the changes you suggested (only not the way they should).
thanks,
Eddy
User avatar
RoadRash
Posts: 8249
Joined: Tue Jul 15, 2008 6:43 pm
Location: Fredrikstad, Norway
Contact: Website

Re: Gallery doesn't look like in Highslide Editor

You need to remove this part between the head tags:

Code: Select all

	<!-- Added By Highslide Plugin. Version 1.28  -->

	<link href='http://www.horsemansretreat.nl/wp-content/plugins/highslide/highslide.css' rel='stylesheet' type='text/css' />
				<script type='text/javascript' src='http://www.horsemansretreat.nl/wp-content/plugins/highslide/highslide.js'></script>

				<script type='text/javascript'>
				hs.showCredits = false;
	 			hs.graphicsDir = 'http://www.horsemansretreat.nl/wp-content/plugins/highslide/graphics/';
	    		hs.outlineType = 'rounded-white';
			</script>
Hilde
Highslide Support Team

Overview of my Highslide sample pages: RoadRash.no
EddyModde
Posts: 3
Joined: Mon Dec 21, 2009 7:10 pm

Re: Gallery doesn't look like in Highslide Editor

fantastic!! I will go and buy the official download of highslide editor.

Return to “Highslide Editor”