rhoug
Posts: 3
Joined: Thu Nov 25, 2010 2:27 pm

editor made gallery thumbs small in IE7

I created a gallery in editor. It works OK in IE8 but the thumbs are smaller in IE7 and without borders.

here is a test page http://ryansartonline.110mb.com/test.html
rhoug
Posts: 3
Joined: Thu Nov 25, 2010 2:27 pm

Re: editor made gallery thumbs small in IE7

fixed the thumb size in ie7 but the border is not showing on the thumbs in ie7.
User avatar
RoadRash
Posts: 8249
Joined: Tue Jul 15, 2008 6:43 pm
Location: Fredrikstad, Norway
Contact: Website

Re: editor made gallery thumbs small in IE7

Hi,

Try to set border to none for .highslide img near the bottom of your highslide.css file:

Code: Select all

.highslide img {
	[hilight]border: none;[/hilight]
}
And border to 1px solid #000 for .highslide-gallery ul li at the bottom of your highslide.css file:

Code: Select all

.highslide-gallery ul li {
	width: 125px;
	height: 125px;
	[hilight]border: 1px solid #000;[/hilight]
	background: #EDEDED;
	margin: 2px;
}
Hilde
Highslide Support Team

Overview of my Highslide sample pages: RoadRash.no
rhoug
Posts: 3
Joined: Thu Nov 25, 2010 2:27 pm

Re: editor made gallery thumbs small in IE7

That worked. But there is a space in the bottom of the thumbs in IE7. How could I fix this.
User avatar
RoadRash
Posts: 8249
Joined: Tue Jul 15, 2008 6:43 pm
Location: Fredrikstad, Norway
Contact: Website

Re: editor made gallery thumbs small in IE7

Add display: block; to .highslide img

Code: Select all

.highslide img {
	border: none;
	[hilight]display: block;[/hilight]
}
Hilde
Highslide Support Team

Overview of my Highslide sample pages: RoadRash.no

Return to “Highslide Editor”