<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>E2interactive Forums: Recent Posts</title>
		<link>http://www.e2interactive.com/forums/</link>
		<description>E2interactive Forums: Recent Posts</description>
		<language>en-US</language>
		<pubDate>Fri, 12 Mar 2010 10:51:55 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.e2interactive.com/forums/search.php</link>
		</textInput>
		<atom:link href="http://www.e2interactive.com/forums/rss/" rel="self" type="application/rss+xml" />

		<item>
			<title>e2 on "Placing (E)2 Gallery Pro in Joomla"</title>
			<link>http://www.e2interactive.com/forums/topic/placing-e2-gallery-pro-in-joomla#post-1490</link>
			<pubDate>Wed, 10 Mar 2010 15:59:30 +0000</pubDate>
			<dc:creator>e2</dc:creator>
			<guid isPermaLink="false">1490@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;You'll need to make sure the e2gallerypro.js file is included inline after the including of the parsexml file if you're going to embed the file into the body and not the header.  I don't know anything about Joomla, but isn't their hooks for adding stuff to the &#38;lt;head&#38;gt; area?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Graemezee on "Placing (E)2 Gallery Pro in Joomla"</title>
			<link>http://www.e2interactive.com/forums/topic/placing-e2-gallery-pro-in-joomla#post-1489</link>
			<pubDate>Wed, 10 Mar 2010 01:04:49 +0000</pubDate>
			<dc:creator>Graemezee</dc:creator>
			<guid isPermaLink="false">1489@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;I have just about found a way to get this to work in Joomla 1.5 with the help of some plugins and their developers&#60;br /&#62;
Found away to hack the default Mootools inclusion here &#60;a href=&#34;http://www.dwightjack.com/diary/2009/06/07/use-mootools-122-in-joomla-15/&#34; rel=&#34;nofollow&#34;&#62;http://www.dwightjack.com/diary/2009/06/07/use-mootools-122-in-joomla-15/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Then found a nice little plugin  called JIncludes which allow you to add php and content to the header of your template&#60;br /&#62;
which mean you only need to load the header details when the page with gallery loads. the author of this plugin Andrea Azzini cleaned up my bad code.&#60;/p&#62;
&#60;p&#62;I have what is one final problem  it seems the javascript generated from (require('e2gallerypro/php/parsexml.php');) is placed in the content and not the header  it seems the only difference between a page that works and  the joomla page&#60;/p&#62;
&#60;p&#62;My question is does &#38;lt;!--(E)2 Gallery Parse XML output Javascript--&#38;gt; have to be in the header and can you think of a way of making it  appear in the header &#60;/p&#62;
&#60;p&#62;this is the code   so far (// (E)2 Gallery Config File&#60;br /&#62;
require('e2gallerypro/e2config.php');&#60;/p&#62;
&#60;p&#62;// (E)2 Gallery Style Sheet Link&#60;br /&#62;
$doc =&#38;amp; JFactory::getDocument();&#60;br /&#62;
$doc-&#38;gt;addStyleSheet( $galleryDesign . '/design.css' );&#60;br /&#62;
$doc-&#38;gt;addScriptDeclaration( 'var designPath=&#34;' . $galleryDesign .'&#34;;' ); &#60;/p&#62;
&#60;p&#62;// Mootools&#60;br /&#62;
$doc-&#38;gt;addScript('e2gallerypro/js/mootools-1.2-core.js');&#60;br /&#62;
$doc-&#38;gt;addScript('e2gallerypro/js/mootools-1.2-more.js');&#60;/p&#62;
&#60;p&#62;// (E)2 Gallery Javascript&#60;br /&#62;
$doc-&#38;gt;addScript('e2gallerypro/js/setupvars.js');&#60;br /&#62;
require('e2gallerypro/php/jparsexml.php');&#60;br /&#62;
$doc-&#38;gt;addScript('e2gallerypro/js/e2gallerypro.js');   &#60;/p&#62;
&#60;p&#62;echo(' &#60;/p&#62;
&#60;p&#62;&#38;lt;!--(E)2 Gallery Pro HTML--&#38;gt;&#60;br /&#62;
&#38;lt;div id=&#34;gallery&#34;&#38;gt;&#60;br /&#62;
  &#38;lt;!--Loading Bar--&#38;gt;&#60;br /&#62;
  &#38;lt;div id=&#34;loading&#34;&#38;gt;&#60;br /&#62;
    &#38;lt;div id=&#34;loadingbar&#34;&#38;gt;&#60;img src=&#34;e2gallerypro/design/e2gallerypro/loading_hill.gif&#34; alt=&#34;&#34; /&#62;&#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;!--End Loading Bar--&#38;gt;&#60;br /&#62;
  &#38;lt;!--Previous Button Div--&#38;gt;&#60;br /&#62;
  &#38;lt;div id=&#34;previous&#34;&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;!--End Previous Button Div--&#38;gt;&#60;br /&#62;
  &#38;lt;!--Next Button Div--&#38;gt;&#60;br /&#62;
  &#38;lt;div id=&#34;next&#34;&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;!--End Next Button Div--&#38;gt;&#60;br /&#62;
  &#38;lt;!--Main Image Holder Div--&#38;gt;&#60;br /&#62;
  &#38;lt;div id=&#34;images&#34;&#38;gt;&#60;br /&#62;
    &#38;lt;div id=&#34;imagewrap&#34;&#38;gt;&#60;br /&#62;
      &#38;lt;div id=&#34;imgloader&#34;&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
    &#38;lt;/div&#38;gt;&#60;br /&#62;
    &#38;lt;div id=&#34;imageinfo&#34;&#38;gt;&#60;br /&#62;
      &#38;lt;div id=&#34;infoloader&#34;&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
    &#38;lt;/div&#38;gt;&#60;br /&#62;
    &#38;lt;div id=&#34;smallmessage&#34;&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;!--End Main Image Holder Div--&#38;gt;&#60;br /&#62;
  &#38;lt;!--Thumb Box Div--&#38;gt;&#60;br /&#62;
  &#38;lt;div id=&#34;thumbbox&#34;&#38;gt;&#60;br /&#62;
    &#38;lt;div id=&#34;thumbleft&#34;&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
    &#38;lt;div id=&#34;thumbright&#34;&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
    &#38;lt;div id=&#34;thumbnails&#34;&#38;gt;&#60;br /&#62;
      &#38;lt;div id=&#34;thumbnailwrap&#34;&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
    &#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;!--End Thumb Box Div--&#38;gt;&#60;br /&#62;
  &#38;lt;!--For Sale Box Div--&#38;gt;&#60;br /&#62;
  &#38;lt;div id=&#34;fsbox&#34;&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;!--End For Sale Box Div--&#38;gt;&#60;br /&#62;
  &#38;lt;!--Galleries Holder Div--&#38;gt;&#60;br /&#62;
  &#38;lt;div id=&#34;galleries&#34;&#38;gt;&#60;br /&#62;
    &#38;lt;div id=&#34;controls&#34;&#38;gt;&#60;br /&#62;
      &#38;lt;div class=&#34;right&#34;&#38;gt;&#60;img src=&#34;e2gallerypro/design/e2gallerypro/gallery_view.png&#34; alt=&#34;View Galleries&#34; title=&#34;View Galleries&#34; /&#62; &#60;img src=&#34;e2gallerypro/design/e2gallerypro/infobox.png&#34; alt=&#34;Show Photo Info&#34; title=&#34;Show Photo Info&#34; /&#62; &#60;img src=&#34;e2gallerypro/design/e2gallerypro/thumbbox.png&#34; alt=&#34;Show / Hide Thumbnails&#34; title=&#34;Show / Hide Thumbnails&#34; /&#62;&#38;lt;/div&#38;gt;&#60;br /&#62;
      &#38;lt;span id=&#34;slideshow&#34;&#38;gt;&#60;img src=&#34;e2gallerypro/design/e2gallerypro/play.png&#34; alt=&#34;Play Slide Show&#34; title=&#34;Play Slide Show&#34; /&#62;&#38;lt;/span&#38;gt; &#124; &#38;lt;span id=&#34;photoNum&#34;&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;span id=&#34;flashNum&#34;&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;span id=&#34;qtNum&#34;&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
    &#38;lt;div id=&#34;galleryset&#34;&#38;gt; &#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;!--End Galleries Holder Div--&#38;gt;&#60;br /&#62;
  &#38;lt;!--Thumbnail Pop Up Holder--&#38;gt;&#60;br /&#62;
  &#38;lt;div id=&#34;thumbnailPopUp&#34;&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;!--End Thumbnail Pop Up Holder--&#38;gt;&#60;br /&#62;
&#38;lt;/div&#38;gt;&#60;br /&#62;
&#38;lt;!--End (E)2 Gallery Pro HTML--&#38;gt;&#60;/p&#62;
&#60;p&#62;');)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>WhateverUnique on "Tweaking with questions"</title>
			<link>http://www.e2interactive.com/forums/topic/tweaking-with-questions#post-1488</link>
			<pubDate>Mon, 08 Mar 2010 18:54:28 +0000</pubDate>
			<dc:creator>WhateverUnique</dc:creator>
			<guid isPermaLink="false">1488@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Ahh....OK so I'm noticing that the above questions 1 &#38;amp; 2 are happening in IE7.  I opened the page up in Mozilla and it renders much better without the white band across the bottom of the image, and the 'right_more' button all the way over.  It also centers up the '1 of XXX Photos' line as I have modified.  So it's something going screwy with IE7.  Any thoughts on how to correct for IE7's misbehaving?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>WhateverUnique on "Tweaking with questions"</title>
			<link>http://www.e2interactive.com/forums/topic/tweaking-with-questions#post-1487</link>
			<pubDate>Sun, 07 Mar 2010 23:14:14 +0000</pubDate>
			<dc:creator>WhateverUnique</dc:creator>
			<guid isPermaLink="false">1487@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;one more question....&#60;br /&#62;
3. Is there no way to pull the thumbnails from the folder location of the regular images...and then apply some percentage or limit to the size? This would simplify the need for making thumbnails and reduce overall page files/size and once the thumbnails were loaded...so would the above images...because they would be the same image.&#60;br /&#62;
thanks,
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Graemezee on "E2 Gallery pro using the same galleries as Slide Show Pro ?"</title>
			<link>http://www.e2interactive.com/forums/topic/e2-gallery-pro-using-the-same-galleries-as-slide-show-pro#post-1486</link>
			<pubDate>Sun, 07 Mar 2010 23:11:31 +0000</pubDate>
			<dc:creator>Graemezee</dc:creator>
			<guid isPermaLink="false">1486@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Just Spotted the multiple galleries thread.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>WhateverUnique on "Tweaking with questions"</title>
			<link>http://www.e2interactive.com/forums/topic/tweaking-with-questions#post-1485</link>
			<pubDate>Sun, 07 Mar 2010 22:17:15 +0000</pubDate>
			<dc:creator>WhateverUnique</dc:creator>
			<guid isPermaLink="false">1485@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;So I've been tweaking the gallery to fit my page and adjust to my look, &#60;a href=&#34;http://whateverunique.com/php/index3a.php&#34; rel=&#34;nofollow&#34;&#62;http://whateverunique.com/php/index3a.php&#60;/a&#62;  and I've got a couple things that I'm stuck on (these may be fixed by the time you read)&#60;br /&#62;
1. I've gotta  strip of white across the bottom of my images, I'm not sure how/where this is happening.  I'm under the impression that it's not within any of the java or css code because if you look at this page &#60;a href=&#34;http://whateverunique.com/php/index.php&#34; rel=&#34;nofollow&#34;&#62;http://whateverunique.com/php/index.php&#60;/a&#62; it is pulling from the same stuff.  The only difference is the very top link is within some of my original pages html code.  Is there something throwing off that image frame?  I can't yet find it.&#60;br /&#62;
2. I've widened out the thumbnail box and shrunk down the height.  I'd like to have more thumbs viewable at one time and I've got a boat load of image thumbs already created at this size. But notice the &#34;right more&#34; arrow is stuck just right of the middle.  The &#34;left more&#34; arrow justified out when the thumb box widened out.  I can't find where/how to get that right arrow to justify out.&#60;/p&#62;
&#60;p&#62;I think once I get those two things buttoned up...the whole thing is going to work well in my site.&#60;br /&#62;
thanks,&#60;br /&#62;
Timmy
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Graemezee on "E2 Gallery pro using the same galleries as Slide Show Pro ?"</title>
			<link>http://www.e2interactive.com/forums/topic/e2-gallery-pro-using-the-same-galleries-as-slide-show-pro#post-1484</link>
			<pubDate>Sun, 07 Mar 2010 20:14:54 +0000</pubDate>
			<dc:creator>Graemezee</dc:creator>
			<guid isPermaLink="false">1484@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Have tweaked the size of the gallery and got the xml file working with the exiting images.&#60;/p&#62;
&#60;p&#62;Is it possible to have different instances of the gallery ie place the gallery in several different pages each one calling  a different xml file?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>WhateverUnique on "E2 Gallery vs. Pro version...night and day"</title>
			<link>http://www.e2interactive.com/forums/topic/e2-gallery-vs-pro-versionnight-and-day#post-1483</link>
			<pubDate>Sun, 07 Mar 2010 15:35:17 +0000</pubDate>
			<dc:creator>WhateverUnique</dc:creator>
			<guid isPermaLink="false">1483@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Hey there,&#60;br /&#62;
So while I think both the original gallery and the pro gallery are great, I've got to say they are pretty much like night and day.  The original one is great in that you simply point to a folder, and the gallery builds it's images from that.  If you want to add photos you simply dump them into that folder.  The pro one, has to use this uploader (which without php5) will not work, and I can't upload images.  I mean I could, but I would have to hand modify the xml file...and that's a really time taxer. Is there no simple way of pointing to a folder like in the older version? I don't care about image tags, titles, descriptions, selling them or any of that extra heavy stuff....I just want to display a ton of images and easily swap and change them out.&#60;br /&#62;
If not, is there a way to have the original version play video files?  If the original version could do just that one thing...that would be sweet.&#60;br /&#62;
thanks,&#60;br /&#62;
Timmy
&#60;/p&#62;</description>
		</item>
		<item>
			<title>e2 on "E2 Gallery pro using the same galleries as Slide Show Pro ?"</title>
			<link>http://www.e2interactive.com/forums/topic/e2-gallery-pro-using-the-same-galleries-as-slide-show-pro#post-1482</link>
			<pubDate>Sat, 06 Mar 2010 20:55:25 +0000</pubDate>
			<dc:creator>e2</dc:creator>
			<guid isPermaLink="false">1482@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Yeah it would be possible. You would need to just generate a new XML file that the E2 Gallery Pro uses to be able to read in your images. You could modify the gallery to be the size you need with maybe a couple of tweeks to some background images and the Galleries CSS file.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>WhateverUnique on "Center Justify"</title>
			<link>http://www.e2interactive.com/forums/topic/center-justify#post-1481</link>
			<pubDate>Sat, 06 Mar 2010 20:29:34 +0000</pubDate>
			<dc:creator>WhateverUnique</dc:creator>
			<guid isPermaLink="false">1481@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Hey no worries.  I tried it on my home machine and managed to make it through to purchase (not sure what what going on) I haven't opened it up, but I figured I'll give it a look.  It's certainly worth a try, and if nothing else I do really like the original one you came up with.  If there is a way I can modify something in the code of the new one to make it do the auto resize let me know.  If not, I may just roll with it, it's not like my current images do that.  I thought it might be nice because I've gotten into taking more panoramas, and oddly formatted photos for my portfolio. But I just my crank the frame size as wide as it will go for my page width...and roll with that.&#60;br /&#62;
thanks...and I'm sure I may post with a new question once I get the pro open. Thanks for your help.&#60;br /&#62;
Timmy
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Graemezee on "E2 Gallery pro using the same galleries as Slide Show Pro ?"</title>
			<link>http://www.e2interactive.com/forums/topic/e2-gallery-pro-using-the-same-galleries-as-slide-show-pro#post-1480</link>
			<pubDate>Sat, 06 Mar 2010 13:28:00 +0000</pubDate>
			<dc:creator>Graemezee</dc:creator>
			<guid isPermaLink="false">1480@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Hi Have just come across your product  I use Slide Show Pro across several sites  with some complex galleries  But being flash this is going to cause problems with some new media. &#60;/p&#62;
&#60;p&#62;As  E2 Gallery pro is xml driven would it be simple enough  to configure the xml to display the images from the slideshow pro galleries  As I use SWFObject to place my galleries I am hopping I could place E2 Gallery pro as the alternative  content.&#60;/p&#62;
&#60;p&#62;As all the images and  thumbs are already on line i hope it would be just a case of generating a new  xml file and configuring the gallery to match the size of the existing flash gallery.&#60;/p&#62;
&#60;p&#62;Does this sound plausible  or just wishful thinking.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tipsforw on "Concrete Polishing Gallery"</title>
			<link>http://www.e2interactive.com/forums/topic/concrete-polishing-gallery#post-1479</link>
			<pubDate>Sat, 06 Mar 2010 04:47:58 +0000</pubDate>
			<dc:creator>tipsforw</dc:creator>
			<guid isPermaLink="false">1479@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;I have made my first gallery for a client using e2galleryPro&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://keaneconcrete.com.au/gallery/index.php&#34; rel=&#34;nofollow&#34;&#62;http://keaneconcrete.com.au/gallery/index.php&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tipsforw on "Slideshow problem"</title>
			<link>http://www.e2interactive.com/forums/topic/slideshow-problem#post-1478</link>
			<pubDate>Sat, 06 Mar 2010 04:23:12 +0000</pubDate>
			<dc:creator>tipsforw</dc:creator>
			<guid isPermaLink="false">1478@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;The problem is fixed but there is now an overlay with text saying &#34;Play Slide Show&#34; still showing under the grey box saying &#34;Play Slide Show&#34;. This only happens after you have clicked the play button once. Would you mind having another look to see what I mean&#60;br /&#62;
&#60;a href=&#34;http://keaneconcrete.com.au/gallery/index.php&#34; rel=&#34;nofollow&#34;&#62;http://keaneconcrete.com.au/gallery/index.php&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>e2 on "Center Justify"</title>
			<link>http://www.e2interactive.com/forums/topic/center-justify#post-1477</link>
			<pubDate>Fri, 05 Mar 2010 22:25:45 +0000</pubDate>
			<dc:creator>e2</dc:creator>
			<guid isPermaLink="false">1477@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;The pro version does not auto-resized to the size of the image, that would be another difference.  When I made the pro version I had a lot of people request this for the free version so I made it the standard in the pro version and programmed it that way.  &#60;/p&#62;
&#60;p&#62;Yes you could make the pro version be on different pages with only one gallery.  You'd just need to create a config file for each separate gallery you want.  You could still use the images you've made for your gallery by using the admin to create the xml file for you pointing to the specific folder for those images.&#60;/p&#62;
&#60;p&#62;The pro version does not automatically create the thumbnails for you as people wanted more control over their thumbnails sizes and the gallery adjusts for it. You can control the thumbnails by creating your own via photoshop or some other photo editing software. &#60;/p&#62;
&#60;p&#62;Not sure why you're having trouble purchasing the gallery or why it's looping you back and forth on the purchase page.  What browser are you using?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>WhateverUnique on "Center Justify"</title>
			<link>http://www.e2interactive.com/forums/topic/center-justify#post-1476</link>
			<pubDate>Fri, 05 Mar 2010 20:29:44 +0000</pubDate>
			<dc:creator>WhateverUnique</dc:creator>
			<guid isPermaLink="false">1476@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Hey there,&#60;br /&#62;
So I thought I'd buy the pro and give it a try to see if I can make it do what I was describing above....but I can't get through the checkout....I almost do and when I click the orange &#34;proceed to checkout&#34; It loops me back to one of the main pages...it doesn't save it in the cart or anything.  I also tried to send a message though the form under the contact link...but it too kept failing.  I'm pretty sure you'll see this (I hope) Maybe you can email me and let me know how I can buy the pro version if the checkout on the site keeps failing.&#60;br /&#62;
thanks,&#60;br /&#62;
Timmy
&#60;/p&#62;</description>
		</item>
		<item>
			<title>WhateverUnique on "Center Justify"</title>
			<link>http://www.e2interactive.com/forums/topic/center-justify#post-1475</link>
			<pubDate>Fri, 05 Mar 2010 19:37:00 +0000</pubDate>
			<dc:creator>WhateverUnique</dc:creator>
			<guid isPermaLink="false">1475@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Oh hot damn that was it!  Thanks! &#60;a href=&#34;http://whateverunique.com/gallery_location/index3.php&#34; rel=&#34;nofollow&#34;&#62;http://whateverunique.com/gallery_location/index3.php&#60;/a&#62;  There it is centered now! I was copying in stuff from the code and trying to shoehorn it into my old html page....so I don't know where I picked up that bit of extra gack.  I've got one image on there that's really big (wide and tall) that stretch out the page.  When it does....it does it all to the right....is there a way to make it stretch it out again...centered? So when it goes beyond the page width it pushes out left and right evenly?  I tried to upload a .mov file...but I see that doesn't work in the simple version....&#60;/p&#62;
&#60;p&#62;Ok, so that's handy to know about the pro vs. this older original gallery.  I've seen the pro and understand the multiple galleries, what I haven't seen it do is the resizing.  This one I'm playing with is cool because the image frame re-sizes to whatever formatting/size the image might be...that's pretty slick.  But the pro version looks like the frame is locked....is that correct? Can I unlock it? I like the clean look of not having stuff around the image...would I be able to adjust it to look a little more like this one?  I also don't care for all the little things popping up in the Pro version. I understand it but again...I like the cleaner, stupid simple look.  Does the pro one automatically create those thumbnails? Can you control the thumbnails?&#60;/p&#62;
&#60;p&#62;It's almost like I'd love a hybrid between the original and the pro versions.  So since it uses XML (oh lord..another learning curve) I won't be able to blend the two will I?  Will the xml plug into my older html page as well as this one has?  If I could get the pro one to behave more like this one....but with the added bonus' like movies, multiple galleries (if I want on some pages) etc...I will certainly get it. I Like that I can direct this one to a different folders (per page/gallery) so if I keep my page navigation's from page to page the same.  I know the pro one combines this so you have multiple galleries in one...but can you do it again like the old one....so you adjust where the 1 gallery points to....so you can set it up on a per page basis?  Some galleries I might would like to have sub folders (multiple galleries) but some pages I might want to have it point to a single folder(single gallery)&#60;br /&#62;
Thanks,&#60;br /&#62;
Timmy
&#60;/p&#62;</description>
		</item>
		<item>
			<title>e2 on "Center Justify"</title>
			<link>http://www.e2interactive.com/forums/topic/center-justify#post-1474</link>
			<pubDate>Fri, 05 Mar 2010 16:49:38 +0000</pubDate>
			<dc:creator>e2</dc:creator>
			<guid isPermaLink="false">1474@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;The pro version and the free version are different in a few ways.  The Pro version was completely re-written but do share some commonalities.  The main difference is that the Pro version runs via XML file.  The html that is embedded into a page have similarities but some differences cause the pro version can display multiple galleries in one gallery.  You can go to &#60;a href=&#34;http://e2gallerypro.e2interactive.com/e2gallerypro/e2upload/&#34; rel=&#34;nofollow&#34;&#62;http://e2gallerypro.e2interactive.com/e2gallerypro/e2upload/&#60;/a&#62; and see the admin demo (uploading is disabled but you can test it it will just say that the file can't be uploaded)  login: username: username password: password&#60;/p&#62;
&#60;p&#62;As far as the display problems you're having, if you look at your table it looks like you have 3 columns the left column is 255 pixels wide, the middle one (which holds the gallery) is 575 pixels wide and the right one is 1 pixel wide.  that's why it's being shoved over to the right and not centered, but actually it is centered to the middle column.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>WhateverUnique on "Center Justify"</title>
			<link>http://www.e2interactive.com/forums/topic/center-justify#post-1473</link>
			<pubDate>Thu, 04 Mar 2010 20:25:22 +0000</pubDate>
			<dc:creator>WhateverUnique</dc:creator>
			<guid isPermaLink="false">1473@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;&#60;a href=&#34;http://whateverunique.com/gallery_location/index2.php&#34; rel=&#34;nofollow&#34;&#62;http://whateverunique.com/gallery_location/index2.php&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Hello,&#60;br /&#62;
So I've downloaded the photo gallery to see if I can get it to work with my site, how it functions, and if I like it over all.  I've never worked with php...but so far I like the look, the way it's working, and everything.&#60;br /&#62;
I've even managed to get it embedded inside my current html design, and it's going to look a lot like the way I've had my photos working in the past (take a look at some of my other pages, you'll see) but much easier to update with images.&#60;br /&#62;
But, I can't figure out how to get the main image display to center justify inside my layout.  I've even added a line above the area before the gallery, I've looked though the CSS, (i did change stuff there but then I changed it back so all the CSS stuff is they same) so if anyone can look at the page source and if there's something I should modify there please let me know...otherwise....if it's in the CSS...which one, and where? I understand CSS...somewhat, but there's a lot going on here.&#60;br /&#62;
If I end up liking this and want to purchase the pro version...will I have to recode everything? or is it a simple change out? I'd hate to build pages only then to say ok let me get the pro and have a nightmare on my hands.&#60;br /&#62;
thanks in advance,&#60;br /&#62;
Timmy
&#60;/p&#62;</description>
		</item>
		<item>
			<title>markell on "First image not displaying info"</title>
			<link>http://www.e2interactive.com/forums/topic/first-image-not-displaying-info#post-1472</link>
			<pubDate>Wed, 03 Mar 2010 09:59:19 +0000</pubDate>
			<dc:creator>markell</dc:creator>
			<guid isPermaLink="false">1472@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;here the solution for anyone interested:&#60;/p&#62;
&#60;p&#62;in the file e2photo2.js, on line 71, in the function &#34;loadfirstimage&#34;, at the &#34;firsttitlefade.set&#34;, you need to have the value set to 1&#60;/p&#62;
&#60;p&#62;function loadfirstimage(currentwidth,currentheight){&#60;br /&#62;
	var fadefirst = new Fx.Style('imgloader','opacity', {duration:fadespeed });&#60;br /&#62;
	fadefirst.set(0);&#60;br /&#62;
	var firsttitlefade = new Fx.Style('imgtitle','opacity', {duration:transspeed });&#60;br /&#62;
	firsttitlefade.set(1);//&#38;lt;---HERE IT IS&#38;gt;&#60;/p&#62;
&#60;p&#62;have a good one!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>e2 on "FLV is not working"</title>
			<link>http://www.e2interactive.com/forums/topic/flv-is-not-working#post-1471</link>
			<pubDate>Mon, 01 Mar 2010 18:01:29 +0000</pubDate>
			<dc:creator>e2</dc:creator>
			<guid isPermaLink="false">1471@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;The NBpath is set in the setupvars.js file.  I've found an issue with the supplied nonverblaster swf that plays the flv files.  Download this file and replace the NonverBlaster.swf in the nonverblaster folder and it should fix the issue.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.e2interactive.com/NonverBlaster.zip&#34; rel=&#34;nofollow&#34;&#62;http://www.e2interactive.com/NonverBlaster.zip&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tonihenriques on "FLV is not working"</title>
			<link>http://www.e2interactive.com/forums/topic/flv-is-not-working#post-1470</link>
			<pubDate>Sun, 28 Feb 2010 08:32:59 +0000</pubDate>
			<dc:creator>tonihenriques</dc:creator>
			<guid isPermaLink="false">1470@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;The FLV files not working.&#60;br /&#62;
See this command line:&#60;/p&#62;
&#60;p&#62;media=new Swiff(&#34;&#34;+NBpath+&#34;?videoURL=&#34;+galleryimages[e][&#34;mediaURL&#34;]+&#34;&#38;amp;allowSmoothing=true&#38;amp;autoPlay=&#34;+autoplay+&#34;&#38;amp;buffer=6&#38;amp;showTimecode=&#34;+showTimecode+&#34;&#38;amp;loop=true&#38;amp;controlColour=&#34;+controllerColor+&#34;&#38;amp;scaleIfFullScreen=true&#38;amp;showScalingButton=false&#34;,{&#60;br /&#62;
					id:&#34;MediaboxSWF&#34;,&#60;br /&#62;
					width:mediaWidth,&#60;br /&#62;
					height:mediaHeight,&#60;br /&#62;
					params:{&#60;br /&#62;
						wmode:&#34;opaque&#34;,&#60;br /&#62;
						bgcolor:bgcolor,&#60;br /&#62;
						allowscriptaccess:scriptaccess,&#60;br /&#62;
						allowfullscreen:fullscreen&#60;br /&#62;
					}&#60;br /&#62;
				});&#60;/p&#62;
&#60;p&#62;What is NBpath???
&#60;/p&#62;</description>
		</item>
		<item>
			<title>markell on "First image not displaying info"</title>
			<link>http://www.e2interactive.com/forums/topic/first-image-not-displaying-info#post-1469</link>
			<pubDate>Fri, 26 Feb 2010 18:50:35 +0000</pubDate>
			<dc:creator>markell</dc:creator>
			<guid isPermaLink="false">1469@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;I'm experiencing the same problem as Lisa's.&#60;br /&#62;
A clou on how to fix the first image iptc loading issue would be greatly appreciate.&#60;br /&#62;
Thx in advance
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tipsforw on "Slideshow problem"</title>
			<link>http://www.e2interactive.com/forums/topic/slideshow-problem#post-1467</link>
			<pubDate>Thu, 25 Feb 2010 07:45:39 +0000</pubDate>
			<dc:creator>tipsforw</dc:creator>
			<guid isPermaLink="false">1467@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Done, thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>e2 on "Slideshow problem"</title>
			<link>http://www.e2interactive.com/forums/topic/slideshow-problem#post-1466</link>
			<pubDate>Thu, 25 Feb 2010 05:12:25 +0000</pubDate>
			<dc:creator>e2</dc:creator>
			<guid isPermaLink="false">1466@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Send me your account log in via the contact form so I now what account to look at.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tipsforw on "Slideshow problem"</title>
			<link>http://www.e2interactive.com/forums/topic/slideshow-problem#post-1465</link>
			<pubDate>Wed, 24 Feb 2010 23:50:21 +0000</pubDate>
			<dc:creator>tipsforw</dc:creator>
			<guid isPermaLink="false">1465@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Could you just check my account. I'm sure I only have a link to the original package to download: (E)2 Gallery Pro - Developers License v1.2 &#60;/p&#62;
&#60;p&#62;I'm pretty sure it is the same as the original download as the date modified on the e2gallerypro.js file is the same as my original file (August 6 2009)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>e2 on "Safari problems - loads 1st time, and not the second.."</title>
			<link>http://www.e2interactive.com/forums/topic/safari-problems-loads-1st-time-and-not-the-second#post-1464</link>
			<pubDate>Wed, 24 Feb 2010 22:33:20 +0000</pubDate>
			<dc:creator>e2</dc:creator>
			<guid isPermaLink="false">1464@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;It's a bug in the free version that's been fixed in the Pro version
&#60;/p&#62;</description>
		</item>
		<item>
			<title>e2 on "Issue Using 1 CSS"</title>
			<link>http://www.e2interactive.com/forums/topic/issue-using-1-css#post-1463</link>
			<pubDate>Wed, 24 Feb 2010 22:27:15 +0000</pubDate>
			<dc:creator>e2</dc:creator>
			<guid isPermaLink="false">1463@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;You won't need the &#38;lt;script type=&#34;text/javascript&#34; src=&#34;js/styleswitcher.js&#34;&#38;gt;&#38;lt;/script&#38;gt; and you could remove the buttons that are available to clicking and changing the stylesheet.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>e2 on "Slideshow problem"</title>
			<link>http://www.e2interactive.com/forums/topic/slideshow-problem#post-1462</link>
			<pubDate>Wed, 24 Feb 2010 22:24:54 +0000</pubDate>
			<dc:creator>e2</dc:creator>
			<guid isPermaLink="false">1462@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;The file you'd have to replace would be the js/e2gallerypro.js file.  I made a couple of updates to the design files but if you've made your own modifications then you don't have to do those updates.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tipsforw on "Slideshow problem"</title>
			<link>http://www.e2interactive.com/forums/topic/slideshow-problem#post-1461</link>
			<pubDate>Wed, 24 Feb 2010 21:12:26 +0000</pubDate>
			<dc:creator>tipsforw</dc:creator>
			<guid isPermaLink="false">1461@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Thanks. Do I have to replace all the files? I can only see the whole package in my store account.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>e2 on "Slideshow problem"</title>
			<link>http://www.e2interactive.com/forums/topic/slideshow-problem#post-1460</link>
			<pubDate>Wed, 24 Feb 2010 19:18:49 +0000</pubDate>
			<dc:creator>e2</dc:creator>
			<guid isPermaLink="false">1460@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;I just uploaded an update that you can download in the store account that fixes this issue.  &#60;a href=&#34;http://store.e2interactive.com/customer/account/login/&#34;&#62;Store Account&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tipsforw on "Slideshow problem"</title>
			<link>http://www.e2interactive.com/forums/topic/slideshow-problem#post-1458</link>
			<pubDate>Wed, 24 Feb 2010 04:28:17 +0000</pubDate>
			<dc:creator>tipsforw</dc:creator>
			<guid isPermaLink="false">1458@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Could you please have a look at my site, as when i press the play and pause button the words &#34;play slideshow&#34; and &#34;pause slideshow&#34; remain visiblie also shows this path /gallery/design/e2gallerypro/pause.png which i cannot seem to fix&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://keaneconcrete.com.au/gallery/index.php&#34; rel=&#34;nofollow&#34;&#62;http://keaneconcrete.com.au/gallery/index.php&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>CongdonJL on "Issue Using 1 CSS"</title>
			<link>http://www.e2interactive.com/forums/topic/issue-using-1-css#post-1457</link>
			<pubDate>Sun, 21 Feb 2010 15:08:02 +0000</pubDate>
			<dc:creator>CongdonJL</dc:creator>
			<guid isPermaLink="false">1457@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;I followed the simple 4 step process and I do not know what I am doing wrong? &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.6adesigns.com/photo/&#34; rel=&#34;nofollow&#34;&#62;http://www.6adesigns.com/photo/&#60;/a&#62; &#60;/p&#62;
&#60;p&#62;&#38;lt;title&#38;gt;(e)2 interactive Photo Gallery&#38;lt;/title&#38;gt;&#60;br /&#62;
&#38;lt;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; href=&#34;css/e2photo_gray.css&#34; title=&#34;gray&#34;&#38;gt;&#60;br /&#62;
&#38;lt;!--&#60;br /&#62;
&#38;lt;link rel=&#34;alternate stylesheet&#34; type=&#34;text/css&#34; href=&#34;css/e2photo_black.css&#34; title=&#34;black&#34; /&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;link rel=&#34;alternate stylesheet&#34; type=&#34;text/css&#34; href=&#34;css/e2photo_lightgray.css&#34; title=&#34;lightgray&#34;&#38;gt;&#60;br /&#62;
&#38;lt;link rel=&#34;alternate stylesheet&#34; type=&#34;text/css&#34; href=&#34;css/e2photo.css&#34; title=&#34;none&#34;&#38;gt;&#60;br /&#62;
&#38;lt;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; href=&#34;css/e2.css&#34; title=&#34;default&#34; /&#38;gt;&#60;br /&#62;
--&#38;gt;&#60;br /&#62;
&#38;lt;?php&#60;/p&#62;
&#60;p&#62; &#38;lt;div align=&#34;center&#34; id=&#34;photocount&#34;&#38;gt; &#38;lt;script type=&#34;text/javascript&#34;&#38;gt;document.write(&#34;1 of &#34;+tempgallery.length+&#34; Photos&#34;);&#38;lt;/script&#38;gt; &#38;lt;/div&#38;gt;&#60;br /&#62;
			  &#38;lt;div id=&#34;thumbtoggler&#34;&#38;gt;&#60;/p&#62;
&#60;p&#62;					&#60;a href=&#34;thumbs();&#34;&#62;&#60;br /&#62;
						&#60;img src=&#34;rsrc/thumbgallery.gif&#34; title=&#34;Toggle Thumbnails::Click to Toggle Thumbnails&#34; alt=&#34;Toggle Thumbnails&#34; /&#62;&#60;br /&#62;
					&#60;/a&#62;  &#60;/p&#62;
&#60;p&#62;				&#38;lt;/div&#38;gt;&#60;br /&#62;
			  &#38;lt;div class=&#34;clear&#34;&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
		  &#38;lt;/div&#38;gt;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tipsforw on "Making changes to the height of the gallery"</title>
			<link>http://www.e2interactive.com/forums/topic/making-changes-to-the-height-of-the-gallery#post-1456</link>
			<pubDate>Sat, 20 Feb 2010 23:48:23 +0000</pubDate>
			<dc:creator>tipsforw</dc:creator>
			<guid isPermaLink="false">1456@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;I would like to adjust the height of my gallery.. to make it bigger. I've tried changing the CSS height for #gallery and a few other things but it affects all of the formatting at the bottom of the gallery. I want to be able to put larger portrait photos onto my gallery webpage&#60;br /&#62;
Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>geocentricdesign on "Safari problems - loads 1st time, and not the second.."</title>
			<link>http://www.e2interactive.com/forums/topic/safari-problems-loads-1st-time-and-not-the-second#post-1455</link>
			<pubDate>Sat, 20 Feb 2010 12:23:00 +0000</pubDate>
			<dc:creator>geocentricdesign</dc:creator>
			<guid isPermaLink="false">1455@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;I tried this and it doesn't work in Firefox. Has anyone fixed this problem in the free version? Also, it loads the remaining pics very slowly when you click on them. Any suggestions on that one too?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>e2 on "Embedding gallery into a basic HTML/CSS page"</title>
			<link>http://www.e2interactive.com/forums/topic/embedding-gallery-into-a-basic-htmlcss-page#post-1454</link>
			<pubDate>Fri, 19 Feb 2010 23:05:58 +0000</pubDate>
			<dc:creator>e2</dc:creator>
			<guid isPermaLink="false">1454@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;You'll need to change the image paths in the XML file to look in /photos/ instead of /e2gallerypro/, plus look in the index file for any references to /e2gallerypro/ folder and modify accordingly.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
