<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:www.nabble.com,2006:forum-31623</id>
	<title>Nabble - Shadowbox</title>
	<updated>2008-10-09T01:07:03Z</updated>
	<link rel="self" type="application/atom+xml" href="http://www.nabble.com/Shadowbox-f31623.xml" />
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Shadowbox-f31623.html" />
	<subtitle type="html">Support forum for discussion of the Shadowbox.js Media Viewer script. Shadowbox is a cross-browser, cross-platform, cleanly-coded and fully-documented media viewer application written entirely in JavaScript. Using Shadowbox, website authors can display pictures and movies in all major browsers without navigating away from the linking page.</subtitle>
	
<entry>
	<id>tag:www.nabble.com,2006:post-19894294</id>
	<title>Re: IE and jQuery Failing. All other browsers fine.</title>
	<published>2008-10-09T01:07:03Z</published>
	<updated>2008-10-09T01:07:03Z</updated>
	<author>
		<name>Wizzud</name>
	</author>
	<content type="html">If I might make a suggestion (or two) ... ?
&lt;br&gt;&lt;br&gt;You have set #shadowbox_title {display:none} 
&lt;br&gt;&lt;br&gt;Try setting #shadowbox_title {height:0px} &lt;i&gt;instead&lt;/i&gt;.
&lt;br&gt;&lt;br&gt;The reason being that Shadowbox expects the title to be present in some form or another and so tries to determine how much space it takes up. However, for some browsers (guess which ones!) getting the height, padding, etc, of a display:none element results in a parsed integer value of NaN ... which seems to be what is happening here.
&lt;br&gt;&lt;br&gt;My second suggestion would be to consider upgrading to Shadowbox v2 (you're running v1). Firstly, version 2 is improved (no surprises there); and secondly, it makes diagnostics and assistance a lot easier because most of the people providing such assistance(?!) will have moved on and no longer have the earlier versions available. (Indeed, you could even find that advice is being given that is either not relevant, or is misleading, because those giving it do not realize which version you are running.)
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/IE-and-jQuery-Failing.-All-other-browsers-fine.-tp19817736p19894294.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19893670</id>
	<title>Re: SHadowbox referring to source not generated source?</title>
	<published>2008-10-09T00:14:40Z</published>
	<updated>2008-10-09T00:14:40Z</updated>
	<author>
		<name>Wizzud</name>
	</author>
	<content type="html">That's because Shadowbox caches its information.
&lt;br&gt;&lt;br&gt;init() tells Shadowbox to find all appropriate links (rel=shadowbox), cache them, and listen for them.
&lt;br&gt;&lt;br&gt;You then run jQuery script that changes those links, but you don't tell Shadowbox that they have changed!
&lt;br&gt;&lt;br&gt;All you need to do is tell Shadowbox to re-setup the link once you have changed it....
&lt;br&gt;&lt;br&gt;function showPic(url,title,descr,width,height) {
&lt;br&gt;&amp;nbsp; $(&amp;quot;#maxImage&amp;quot;).fadeOut(&amp;quot;fast&amp;quot;, function(){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; var me = this, image = new Image();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; $(image).load(function() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; me.attr({ src: url, width: width, height: height, alt: title }).fadeIn(&amp;quot;fast&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Shadowbox.setup( $('#maxTitle').attr({ href: title }) );
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; }).attr({src: url});
&lt;br&gt;&amp;nbsp; });
&lt;br&gt;}</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/SHadowbox-referring-to-source-not-generated-source--tp19858057p19893670.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19890236</id>
	<title>Re: Remove scrollbar on HTML pages</title>
	<published>2008-10-08T17:37:55Z</published>
	<updated>2008-10-08T17:37:55Z</updated>
	<author>
		<name>frogger</name>
	</author>
	<content type="html">I tried this and seemed to have worked:
&lt;br&gt;&lt;br&gt;body {
&lt;br&gt;&lt;br&gt;overflow: hidden;
&lt;br&gt;&lt;br&gt;}
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Remove-scrollbar-on-HTML-pages-tp16831137p19890236.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19890085</id>
	<title>Re: Remove scrollbar on HTML pages</title>
	<published>2008-10-08T17:22:30Z</published>
	<updated>2008-10-08T17:22:30Z</updated>
	<author>
		<name>htizo</name>
	</author>
	<content type="html">Yes it's the ie6 browser I believe.
&lt;br&gt;As I said there are hacks. You can find them via Google. But! why bother?
&lt;br&gt;&lt;br&gt;hth,
&lt;br&gt;build</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Remove-scrollbar-on-HTML-pages-tp16831137p19890085.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19889628</id>
	<title>Re: Remove scrollbar on HTML pages</title>
	<published>2008-10-08T16:35:10Z</published>
	<updated>2008-10-08T16:35:10Z</updated>
	<author>
		<name>frogger</name>
	</author>
	<content type="html">Thanks for your comments. 
&lt;br&gt;I am trying to display a web page within shadowbox with no scrollbars,
&lt;br&gt;For some reason when I am looking at this in IE 7 and firefox its fine.
&lt;br&gt;Just IE 6 shows the scrollbars.
&lt;br&gt;&lt;br&gt;overflow: hidden;
&lt;br&gt;&lt;br&gt;Just doesnt do it for some reason.</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Remove-scrollbar-on-HTML-pages-tp16831137p19889628.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19889548</id>
	<title>Slideshow progress bar</title>
	<published>2008-10-08T16:27:53Z</published>
	<updated>2008-10-08T16:27:53Z</updated>
	<author>
		<name>htizo</name>
	</author>
	<content type="html">G'day All,
&lt;br&gt;I have had a request to put a clock on the slideshow so users can see when the next image will display. they are looking at motorbikes and if they find an interesting bike they stop and drool over it. I thought an unobtrusively colored progress bar might be easily integrated. Perhaps between the image and the info bar?
&lt;br&gt;&lt;br&gt;Any other suggestions?
&lt;br&gt;&lt;br&gt;Can anyone give me the requirements and a pointer where to start?
&lt;br&gt;&lt;br&gt;Thanking you in anticipation,
&lt;br&gt;build</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Slideshow-progress-bar-tp19889548p19889548.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19889406</id>
	<title>[OT] Alternate sizing of images.</title>
	<published>2008-10-08T16:12:57Z</published>
	<updated>2008-10-08T16:12:57Z</updated>
	<author>
		<name>htizo</name>
	</author>
	<content type="html">G'day All,
&lt;br&gt;I've had a number of requests on one of my sites for larger images however a number of members are on dial-up and that would slow down their browsing too much. I do however want to keep everyone happy.
&lt;br&gt;&lt;br&gt;There's obviously a number of ways to provide a larger image option and I thought you blokes may be the best to ask as you'll have probably seen it all, the weird and the wonderful so:
&lt;br&gt;What are your suggestions?
&lt;br&gt;&lt;br&gt;Thanking you in anticipation,
&lt;br&gt;build</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-OT--Alternate-sizing-of-images.-tp19889406p19889406.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19885349</id>
	<title>Simply can't get it to fire (solved)</title>
	<published>2008-10-08T12:05:41Z</published>
	<updated>2008-10-08T12:05:41Z</updated>
	<author>
		<name>aclevername</name>
	</author>
	<content type="html">I've been wrestling with this for several hours now and can't figure it out. &amp;nbsp;I'm trying to open an html file (hosted on my server) in an iframe. &amp;nbsp;When I click the link, the file opens in a new page (Shadowbox doesn't fire at all). &amp;nbsp;
&lt;br&gt;&lt;br&gt;Here's the setup:
&lt;br&gt;&lt;br&gt;&amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;scripts/jquery-1.2.6.min.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;scripts/shadowbox-jquery.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;scripts/shadowbox.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;!--
&lt;br&gt;Shadowbox.loadSkin('classic', 'scripts/skin'); // use the &amp;quot;classic&amp;quot; skin
&lt;br&gt;Shadowbox.loadLanguage('en', 'scripts/lang'); // use the English language
&lt;br&gt;Shadowbox.loadPlayer(['iframe'], 'scripts/player'); // use iframe player
&lt;br&gt;&lt;br&gt;&lt;br&gt;$(document).ready(function(){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Shadowbox.init;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&amp;quot;div.answerLg&amp;quot;).hide();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&amp;quot;div.answerSm&amp;quot;).hide();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&amp;quot;div.question&amp;quot;).click(function(){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(this).next().slideToggle();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });
&lt;br&gt;});
&lt;br&gt;//--&amp;gt;
&lt;br&gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&lt;br&gt;And the link:
&lt;br&gt;&lt;br&gt;a class=&amp;quot;option&amp;quot; href=&amp;quot;events/highschool_1.htm&amp;quot; rel=&amp;quot;shadowbox;width=400;height=200&amp;quot;&amp;gt;October 15&amp;lt;/a
&lt;br&gt;&lt;br&gt;This is really driving me nuts. &amp;nbsp;Thanks for any hints.
&lt;br&gt;&lt;br&gt;I needed to call Shadowbox.init(); instead of Shadowbox.init;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Simply-can%27t-get-it-to-fire-%28solved%29-tp19885349p19885349.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19884814</id>
	<title>Re: Reload page on closer of shadowbox</title>
	<published>2008-10-08T11:38:47Z</published>
	<updated>2008-10-08T11:38:47Z</updated>
	<author>
		<name>seller789</name>
	</author>
	<content type="html">I created a function that I can call when I click a 'close' button or link.
&lt;br&gt;&lt;br&gt;function closeShadow(){
&lt;br&gt;var Shadowbox = window.parent.Shadowbox;
&lt;br&gt;var loc = window.parent.location;
&lt;br&gt;window.parent.location = loc;
&lt;br&gt;Shadowbox.close();
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Reload-page-on-closer-of-shadowbox-tp19713689p19884814.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19878975</id>
	<title>Re: Remove scrollbar on HTML pages</title>
	<published>2008-10-08T06:41:33Z</published>
	<updated>2008-10-08T06:41:33Z</updated>
	<author>
		<name>htizo</name>
	</author>
	<content type="html">If I'm not mistaken that's an ie thing.
&lt;br&gt;&lt;br&gt;There are hacks. Try googling &amp;quot;css no scrollbar in ie&amp;quot;
&lt;br&gt;But why bother for a few pixels?
&lt;br&gt;hth,
&lt;br&gt;build</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Remove-scrollbar-on-HTML-pages-tp16831137p19878975.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19876242</id>
	<title>Re: IE and jQuery Failing. All other browsers fine.</title>
	<published>2008-10-08T03:30:07Z</published>
	<updated>2008-10-08T03:30:07Z</updated>
	<author>
		<name>Enmity</name>
	</author>
	<content type="html">Sealed my fate how so? You're offering suggestions regarding CSS. I know the CSS and the CSS is solid. it's the javascript that is failing in IE. CSS should have nothing to do with it.</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/IE-and-jQuery-Failing.-All-other-browsers-fine.-tp19817736p19876242.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19875981</id>
	<title>Re: IE and jQuery Failing. All other browsers fine.</title>
	<published>2008-10-08T03:11:44Z</published>
	<updated>2008-10-08T03:11:44Z</updated>
	<author>
		<name>htizo</name>
	</author>
	<content type="html">&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-message&quot;&gt;At least they work.&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
I think you just sealed your fate.
&lt;br&gt;&lt;br&gt;Good luck with it.
&lt;br&gt;&lt;br&gt;regards,
&lt;br&gt;build</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/IE-and-jQuery-Failing.-All-other-browsers-fine.-tp19817736p19875981.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19875568</id>
	<title>Re: IE and jQuery Failing. All other browsers fine.</title>
	<published>2008-10-08T02:42:47Z</published>
	<updated>2008-10-08T02:42:47Z</updated>
	<author>
		<name>Enmity</name>
	</author>
	<content type="html">The CSS for the shadowbox has been stripped in an effort to find the issue.
&lt;br&gt;&lt;br&gt;The shadow box loads in FF even if it doesn't appear correctly. The point is it loads. It won't even load in IE. A new page is opened in IE.
&lt;br&gt;&lt;br&gt;At this point I don't care two bits about how it actually looks. I just want it to function in IE, then I'll refine appearance.
&lt;br&gt;&lt;br&gt;Be aware, I'm no newcomer to web design. Been doing it several years. I fully understand CSS and xHTML as well as php and javascript. The issue is I don't fully know the shadowbox coding and since it's packed it's difficult to translate. 
&lt;br&gt;&lt;br&gt;Has shadowbox EVER worked in IE with jquery? 
&lt;br&gt;&lt;br&gt;Perhaps I should simply look into highslide, thickbox, or litebox and alter those packages. At least they work.</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/IE-and-jQuery-Failing.-All-other-browsers-fine.-tp19817736p19875568.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19875283</id>
	<title>Re: IE and jQuery Failing. All other browsers fine.</title>
	<published>2008-10-08T02:21:31Z</published>
	<updated>2008-10-08T02:21:31Z</updated>
	<author>
		<name>htizo</name>
	</author>
	<content type="html">G'day Enmity,
&lt;br&gt;It's not working in Firefox either. Shadowbox loads bit I can't see much and it's hopelessly dark. There are a number of errors on the page and it would take too much time to sort out so sorry I can't help till you clean it up. May I suggest you use the std shadowbox, then change one item at a time till you find the error, yes that will take *you* a while. Best of luck mate.
&lt;br&gt;&lt;br&gt;cheers,
&lt;br&gt;build</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/IE-and-jQuery-Failing.-All-other-browsers-fine.-tp19817736p19875283.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19870774</id>
	<title>Re: IE and jQuery Failing. All other browsers fine.</title>
	<published>2008-10-07T18:28:06Z</published>
	<updated>2008-10-07T18:28:06Z</updated>
	<author>
		<name>Enmity</name>
	</author>
	<content type="html">I appreciate that, but please look again. That has been changed. I can only assume you looked at a cached page. I, of course, changed and tested it before stating that is not the issue.

&lt;br /&gt;&lt;br /&gt;
&lt;pre&gt;

#shadowbox_body{
	position:relative;
	overflow:hidden;
	margin:3px;
	padding:0;
	border:1px solid #333;
	}
&lt;/pre&gt;

&lt;br /&gt;&lt;br /&gt;
Shadowbox still fails in IE.</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/IE-and-jQuery-Failing.-All-other-browsers-fine.-tp19817736p19870774.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19870736</id>
	<title>Re: IE and jQuery Failing. All other browsers fine.</title>
	<published>2008-10-07T18:23:11Z</published>
	<updated>2008-10-07T18:23:11Z</updated>
	<author>
		<name>htizo</name>
	</author>
	<content type="html">Enmity,
&lt;br&gt;&lt;br&gt;#shadowbox_body{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; position:relative;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; overflow:hidden;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; margin:3px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; padding:0;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; border:4px solid #444; &amp;lt;THIS IS THE PROBLEM
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;hth,
&lt;br&gt;build</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/IE-and-jQuery-Failing.-All-other-browsers-fine.-tp19817736p19870736.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19870386</id>
	<title>Re: IE and jQuery Failing. All other browsers fine.</title>
	<published>2008-10-07T17:40:34Z</published>
	<updated>2008-10-07T17:40:34Z</updated>
	<author>
		<name>Enmity</name>
	</author>
	<content type="html">I had changed that line. However, changing it back to border: 1px solid #333; results in no change.
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.killsign.com/dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.killsign.com/dev&lt;/a&gt;&lt;br&gt;&lt;br&gt;Thanks for the suggestion. It doesn't appear the be the issue though. Still no shadowbox in any version of IE.
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/IE-and-jQuery-Failing.-All-other-browsers-fine.-tp19817736p19870386.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19869925</id>
	<title>Re: IE and jQuery Failing. All other browsers fine.</title>
	<published>2008-10-07T16:57:01Z</published>
	<updated>2008-10-07T16:57:01Z</updated>
	<author>
		<name>htizo</name>
	</author>
	<content type="html">G'day Enmity,
&lt;br&gt;I reckon it's in the css.
&lt;br&gt;Have you changed this line in
&lt;br&gt;#shadowbox_body {
&lt;br&gt;..........
&lt;br&gt;border: 1px solid #333;
&lt;br&gt;..........
&lt;br&gt;}
&lt;br&gt;If so try changing it to the above.
&lt;br&gt;&lt;br&gt;&lt;br&gt;hth,
&lt;br&gt;build</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/IE-and-jQuery-Failing.-All-other-browsers-fine.-tp19817736p19869925.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19869406</id>
	<title>Re: Remove scrollbar on HTML pages</title>
	<published>2008-10-07T16:18:15Z</published>
	<updated>2008-10-07T16:18:15Z</updated>
	<author>
		<name>frogger</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I also looking to remove scroll bar and added the below:
&lt;br&gt;&lt;br&gt;#shadowbox_content.html {
&lt;br&gt;&lt;br&gt;&amp;nbsp; height: 100%;
&lt;br&gt;&amp;nbsp; 
&lt;br&gt;&amp;nbsp; width: 100%;
&lt;br&gt;&lt;br&gt;&amp;nbsp; overflow: hidden; /* make html content scrollable */
&lt;br&gt;&lt;br&gt;}
&lt;br&gt;&lt;br&gt;But for some reason when I look at this using IE 6 the scrollbars still appear.
&lt;br&gt;Any ideas ?</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Remove-scrollbar-on-HTML-pages-tp16831137p19869406.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19865047</id>
	<title>Re: Load an image gallery from an iframe ?</title>
	<published>2008-10-07T12:04:13Z</published>
	<updated>2008-10-07T12:04:13Z</updated>
	<author>
		<name>Leeloo Minaï</name>
	</author>
	<content type="html">I have read the FAQ and i did not find any complete code to launch an &lt;b&gt;IMAGE GALLERY&lt;/b&gt;&amp;nbsp;from an iframe (there is some code for a single link, though).
&lt;br&gt;&lt;br&gt;By the same way, i have to mention the main page suffers from a lack of iframe example for a single link too !
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Load-an-image-gallery-from-an-iframe---tp19732327p19865047.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19858801</id>
	<title>Re: IE and jQuery Failing. All other browsers fine.</title>
	<published>2008-10-07T07:14:41Z</published>
	<updated>2008-10-07T07:14:41Z</updated>
	<author>
		<name>Enmity</name>
	</author>
	<content type="html">Anyone?</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/IE-and-jQuery-Failing.-All-other-browsers-fine.-tp19817736p19858801.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19858739</id>
	<title>Re: I need a function in shadowbox.. can someone help me ?</title>
	<published>2008-10-07T07:02:48Z</published>
	<updated>2008-10-07T07:02:48Z</updated>
	<author>
		<name>kintaro85</name>
	</author>
	<content type="html">ok that works. but ive to write it to every picture.. thats too comlicated for the users that later upload some gallerys. 
&lt;br&gt;&lt;br&gt;isn`t there a way to implement this function in the plugin ? that it is in every shadowbox on my site ?
&lt;br&gt;&lt;br&gt;greets kin!</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/I-need-a-function-in-shadowbox..-can-someone-help-me---tp19850066p19858739.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19858057</id>
	<title>SHadowbox referring to source not generated source?</title>
	<published>2008-10-07T06:23:27Z</published>
	<updated>2008-10-07T06:23:27Z</updated>
	<author>
		<name>thehen</name>
	</author>
	<content type="html">Hello Shadowbox people,
&lt;br&gt;&lt;br&gt;I've only been using Shadowbox for a little while but it's already turning out to be absolutely awesome - far superior to any other media gallery.
&lt;br&gt;&lt;br&gt;I have a slight problem regarding changing the link with javascript and shadowbox opening the original link.
&lt;br&gt;&lt;br&gt;I have a live example here &lt;a href=&quot;http://www.henryhoffman.com/web-design.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.henryhoffman.com/web-design.html&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;As you can see, the top three thumbnails replace the larger image with a new one and change its href to a new link. Seemingly shadowbox can't keep up as it doesn't open the new link, only the original.
&lt;br&gt;&lt;br&gt;I'm starting to panic a little bit and am thinking that maybe it's not compatible at all? &lt;img class='smiley' src='http://www.nabble.com/images/smiley/smiley_cry.gif' /&gt;&lt;br&gt;&lt;br&gt;Any help would be heartily appreciated!</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/SHadowbox-referring-to-source-not-generated-source--tp19858057p19858057.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19852464</id>
	<title>Re: google maps &amp; media embed</title>
	<published>2008-10-07T00:20:47Z</published>
	<updated>2008-10-07T00:20:47Z</updated>
	<author>
		<name>htizo</name>
	</author>
	<content type="html">Pixel,
&lt;br&gt;Then it's a well prepared doc the satellite link works! If I am not mistaken you are mistaken.
&lt;br&gt;I'll be trying it in a few days, so if you can wait.
&lt;br&gt;Here is the link to the embeded map:
&lt;br&gt;&lt;a href=&quot;http://maps.google.com/maps?file=api&amp;amp;v=2&amp;amp;key=ABQIAAAAl9cpfw69cLkrXP2Twqd_WRQlJUWJBX1_MH5CCmfsGz8ZlG5tEBSm26uqRds3eVGiKaHezXv2fm1woQ&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://maps.google.com/maps?file=api&amp;amp;v=2&amp;amp;key=ABQIAAAAl9cpfw69cLkrXP2Twqd_WRQlJUWJBX1_MH5CCmfsGz8ZlG5tEBSm26uqRds3eVGiKaHezXv2fm1woQ&lt;/a&gt;&amp;quot;
&lt;br&gt;hth,
&lt;br&gt;build</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/google-maps---media-embed-tp19826480p19852464.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19852292</id>
	<title>Re: google maps &amp; media embed</title>
	<published>2008-10-07T00:08:31Z</published>
	<updated>2008-10-07T00:08:31Z</updated>
	<author>
		<name>paupixel</name>
	</author>
	<content type="html">Obviously I did, but the code there refers to an already prepared doc instead than the original Google map...
&lt;br&gt;unfortunately
&lt;br&gt;&lt;br&gt;thanks for your post</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/google-maps---media-embed-tp19826480p19852292.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19851042</id>
	<title>Re: Changing Toolbar alignment</title>
	<published>2008-10-06T21:54:30Z</published>
	<updated>2008-10-06T21:54:30Z</updated>
	<author>
		<name>blakerblaker</name>
	</author>
	<content type="html">I wonder if in the months since this was posted.. anyone found a customization to change the alignment of the toolbar?
&lt;br&gt;&lt;br&gt;Thanks</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Changing-Toolbar-alignment-tp18913558p19851042.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19850620</id>
	<title>Re: I need a function in shadowbox.. can someone help me ?</title>
	<published>2008-10-06T21:03:20Z</published>
	<updated>2008-10-06T21:03:20Z</updated>
	<author>
		<name>htizo</name>
	</author>
	<content type="html">Kin,
&lt;br&gt;That's not javascript it's html.
&lt;br&gt;HTML would (in my opinion) be the easiest way to impliment your request.
&lt;br&gt;I've put up an example in the first image here:
&lt;br&gt;&lt;a href=&quot;http://www.ariel.org.au/gallery.php?dir=gallerytest&amp;page=page1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ariel.org.au/gallery.php?dir=gallerytest&amp;page=page1&lt;/a&gt;&lt;br&gt;Note the download link in the caption at the bottom.
&lt;br&gt;View the source to get the code.
&lt;br&gt;&lt;br&gt;hth,
&lt;br&gt;build</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/I-need-a-function-in-shadowbox..-can-someone-help-me---tp19850066p19850620.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19850394</id>
	<title>Re: I need a function in shadowbox.. can someone help me ?</title>
	<published>2008-10-06T20:18:33Z</published>
	<updated>2008-10-06T20:18:33Z</updated>
	<author>
		<name>kintaro85</name>
	</author>
	<content type="html">hi htizo!
&lt;br&gt;&lt;br&gt;as i sayd iam a noob in java script. i have no idea where i have to paste the lines u wrote me.. :/
&lt;br&gt;&lt;br&gt;but it is important for me that the function will be intigrated in the plugin and must not wrote in every site with a new gallery.. becouse other persons without knowledge of php/html will upload pictures later on the site..
&lt;br&gt;&lt;br&gt;&lt;br&gt;sry 4 my bad english.. it is 5 o clock in the morning Oo
&lt;br&gt;&lt;br&gt;greets kin</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/I-need-a-function-in-shadowbox..-can-someone-help-me---tp19850066p19850394.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19850306</id>
	<title>Re: Load an image gallery from an iframe ?</title>
	<published>2008-10-06T20:07:31Z</published>
	<updated>2008-10-06T20:07:31Z</updated>
	<author>
		<name>htizo</name>
	</author>
	<content type="html">G'day Lee,
&lt;br&gt;Have you read the FAQ here?
&lt;br&gt;&lt;a href=&quot;http://www.mjijackson.com/shadowbox/doc/faq.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.mjijackson.com/shadowbox/doc/faq.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;There is &amp;quot;Question: How can I open Shadowbox from inside an iframe?&amp;quot;
&lt;br&gt;&lt;br&gt;hth,
&lt;br&gt;build</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Load-an-image-gallery-from-an-iframe---tp19732327p19850306.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19850179</id>
	<title>Re: I need a function in shadowbox.. can someone help me ?</title>
	<published>2008-10-06T19:50:44Z</published>
	<updated>2008-10-06T19:50:44Z</updated>
	<author>
		<name>htizo</name>
	</author>
	<content type="html">G'day Kin,
&lt;br&gt;I have no idea wether this will work or not, I have not tried it but give it a go and let us know.
&lt;br&gt;[example might not display in forum well, so take out spaces before the a]
&lt;br&gt;&amp;lt; a rel=&amp;quot;shadowbox[gallery]&amp;quot; href=&amp;quot;/pathto/images/001.jpg&amp;quot; title=&amp;quot;This is a caption. &amp;lt;ag:formatted&amp;gt;&amp;lt;a href='/pathto/images/001.jpg' target='_blank' &amp;gt; Download Image &amp;lt;/a&amp;gt;&amp;lt;/ag:formatted&amp;gt;&amp;quot;&amp;gt;&lt;img src=&quot;/pathto/thumbs/001.jpg&quot; /&gt;&amp;lt;/ a&amp;gt;
&lt;br&gt;fingers crossed,
&lt;br&gt;build</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/I-need-a-function-in-shadowbox..-can-someone-help-me---tp19850066p19850179.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19850066</id>
	<title>I need a function in shadowbox.. can someone help me ?</title>
	<published>2008-10-06T19:36:32Z</published>
	<updated>2008-10-06T19:36:32Z</updated>
	<author>
		<name>kintaro85</name>
	</author>
	<content type="html">Hi!
&lt;br&gt;&lt;br&gt;I´am using Shadowbox for a gallery on a Website iam working at.
&lt;br&gt;Now i need a function.. when the shadowbox with the picture pops up..and when you click on it.. it pops up in a _blank window in full size... 
&lt;br&gt;&lt;br&gt;I need it that way becouse the gallerie is in a 400px high iframe, where the pictures are shown very small.. :/
&lt;br&gt;&lt;br&gt;Sorry iam a noob in Java Script.. can someone help me with the code ? i dont get it..... :/
&lt;br&gt;&lt;br&gt;thx kin</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/I-need-a-function-in-shadowbox..-can-someone-help-me---tp19850066p19850066.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19849651</id>
	<title>Re: google maps &amp; media embed</title>
	<published>2008-10-06T18:47:45Z</published>
	<updated>2008-10-06T18:47:45Z</updated>
	<author>
		<name>htizo</name>
	</author>
	<content type="html">G'day pixel,
&lt;br&gt;Have you tried the example on this page?
&lt;br&gt;&lt;a href=&quot;http://www.mjijackson.com/shadowbox/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.mjijackson.com/shadowbox/index.html&lt;/a&gt;&lt;br&gt;it's towards the bottom of the page under &amp;quot;Web&amp;quot;.
&lt;br&gt;&lt;br&gt;hth,
&lt;br&gt;build</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/google-maps---media-embed-tp19826480p19849651.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19849532</id>
	<title>FAQ suggestion</title>
	<published>2008-10-06T18:29:39Z</published>
	<updated>2008-10-06T18:29:39Z</updated>
	<author>
		<name>htizo</name>
	</author>
	<content type="html">G'day all,
&lt;br&gt;Could I suggest a &amp;quot;sticky&amp;quot; thread that stays at the top with FAQ's like the IE problems, don't change the &amp;quot;border: 1px solid #333; &amp;quot; in #shadowbox_body, etc, etc. As there seems to be a lot of similar questions being asked and I could not find a comprehensive FAQ on the web.
&lt;br&gt;&lt;br&gt;Thanks in anticipation,
&lt;br&gt;build</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/FAQ-suggestion-tp19849532p19849532.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19849369</id>
	<title>Start ShadowBox with Slideshow Paused</title>
	<published>2008-10-06T18:11:40Z</published>
	<updated>2008-10-06T18:11:40Z</updated>
	<author>
		<name>htizo</name>
	</author>
	<content type="html">I noticed a number of posts wanting this feature but no resolution and as I've found the answer for my own purposes I thought I'd pass the solution on. And also request a new feature of a slideshowState option.
&lt;br&gt;---------------------------------------
&lt;br&gt;TO GET SHADOWBOX TO OPEN WITH SLIDESHOW PAUSED
&lt;br&gt;//In the shadowbox.js script
&lt;br&gt;//Two lines of code need editing.
&lt;br&gt;//Find:
&lt;br&gt;//[var slide_timer;]
&lt;br&gt;//Edit the line to;
&lt;br&gt;//[var slide_timer = 'paused';]
&lt;br&gt;//Find:
&lt;br&gt;//Shadowbox.close = function(){
&lt;br&gt;//Edit the line:
&lt;br&gt;//[slide_timer = null;]
&lt;br&gt;//to:
&lt;br&gt;//[slide_timer = 'paused';]
&lt;br&gt;---------------------------------------
&lt;br&gt;worked for me but let me know if there's any bugs please.
&lt;br&gt;hth,
&lt;br&gt;beers,
&lt;br&gt;build</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Start-ShadowBox-with-Slideshow-Paused-tp19849369p19849369.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19849276</id>
	<title>Re: Adding a Description to Shadowbox</title>
	<published>2008-10-06T18:03:43Z</published>
	<updated>2008-10-06T18:03:43Z</updated>
	<author>
		<name>htizo</name>
	</author>
	<content type="html">G'day Skater,
&lt;br&gt;Is this what you mean?
&lt;br&gt;&lt;a href=&quot;http://www.ariel.org.au/gallery.php?dir=gallerytest&amp;page=page1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ariel.org.au/gallery.php?dir=gallerytest&amp;page=page1&lt;/a&gt;&lt;br&gt;if so it's in the skin, I've zipped my skin.js and skin.css and you can find them here:
&lt;br&gt;&lt;a href=&quot;http://www.ariel.org.au/download/skin.zip&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ariel.org.au/download/skin.zip&lt;/a&gt;&lt;br&gt;&lt;br&gt;Just in case a newbie reads this here's the instructions
&lt;br&gt;//CHANGE THE TITLE AT TOP TO CAPTIONS AT BOTTOM
&lt;br&gt;//Two files require changes, skin.css and skin.js
&lt;br&gt;//In skin.js find these three lines
&lt;br&gt;//'&amp;lt;div id=&amp;quot;shadowbox_title&amp;quot;&amp;gt;' +
&lt;br&gt;//'&amp;lt;div id=&amp;quot;shadowbox_title_inner&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;' +
&lt;br&gt;//'&amp;lt;/div&amp;gt;' +
&lt;br&gt;//now they need to be moved in their entirity
&lt;br&gt;//to below the line
&lt;br&gt;//'&amp;lt;div class=&amp;quot;shadowbox_clear&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;' +
&lt;br&gt;//AND the two following closing divs which look like this
&lt;br&gt;//'&amp;lt;/div&amp;gt;' +
&lt;br&gt;//In my skin.js that is line 65.
&lt;br&gt;//so when your finished the title div's
&lt;br&gt;//are on lines 65, 66, 67.
&lt;br&gt;//Then in skin.css find
&lt;br&gt;//#shadowbox_title {
&lt;br&gt;//change the height to your requirements mine was 74px;
&lt;br&gt;&lt;br&gt;hth,
&lt;br&gt;build</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Adding-a-Description-to-Shadowbox-tp19829341p19849276.html" />
</entry>

</feed>
