|
Title: [solved] RSGallery2 breaks design Post by: matu on April 27, 2007, 05:17:18 am http://rauge.ee/paadiralli2/index.php?option=com_rsgallery2&Itemid=11&page=inline&id=1&catid=1&limitstart=0 (http://rauge.ee/paadiralli2/index.php?option=com_rsgallery2&Itemid=11&page=inline&id=1&catid=1&limitstart=0)
Why is this happening? I can not find the problem. Title: Re: RSGallery2 breaks design Post by: Brat on April 27, 2007, 11:39:26 pm http://rauge.ee/paadiralli2/index.php?option=com_rsgallery2&Itemid=11&page=inline&id=1&catid=1&limitstart=0 (http://rauge.ee/paadiralli2/index.php?option=com_rsgallery2&Itemid=11&page=inline&id=1&catid=1&limitstart=0) Why is this happening? I can not find the problem. I had the same issue. I did some searching, and, for my template, I found that the problem was the following CSS code: Code: ul#rsg2-galleryList{ clear: both; padding: 0; } I changed the above to the following: Code: ul#rsg2-galleryList{ float: left; padding: 0; } And that appeared to take care of it. I have a lot more CSS work to do in my case, and again I can't swear that this will fix your situation, but at least it's a starting point. Hope this helps! Regards, Brat. Title: Re: RSGallery2 breaks design Post by: matu on April 28, 2007, 03:09:05 am That did not help in my case. :(
I searched the css, but I can not find the place that messes it up. Title: Re: RSGallery2 breaks design Post by: Brat on April 28, 2007, 09:13:07 pm That did not help in my case. :( I searched the css, but I can not find the place that messes it up. Sorry to hear that - this can be a frustrating process. Do a "view source" for the page that shows your gallery. That will show you exactly how your code is laid out. That's what I did, and it helped me debug my site. After my previous post, I did some more testing. Ironically, IE rendered my pages the way I wanted. FireFox was my "problem child". The major issue is that my template is "pure" CSS - divs are funny things that can easily be affected by how other divs are defined (especially the dreaded "clear" definitions). There were a LOT of places where the gallery's layout broke my template. In particular, I had pages where stuff floated to the bottom. Viewing pictures full-sized also "broke" the bottom of my template. I could have spent several more hours trying to force all the CSS to play nice with each other, but I don't have that kind of time. So, in order to fix my various problems, within my template's index file, I had to wrap my mainbody() statement within a single row/single column table, with width set appropriately. I also am tweaking the gallery CSS to further define my layout. Although your template is different from mine, I am willing to bet that you may be suffering from various combinations of float and clear definitions (check your page source and look within your gallery's CSS file). I am a fan of CSS, no doubt, but, unfortunately, having divs in the site template, plus divs within the gallery layout itself (particularly ".clr" divs due to my layout) caused conflict. "Pure" CSS, at least from my experience, rarely works in all situations cross-browser. Sometimes, a table call just makes life saner. ::) Regards, Brat. Title: Re: RSGallery2 breaks design Post by: matu on May 02, 2007, 02:07:02 pm Finally i found the solution. In the rsgallery2.html.php file just before the comment: <!-- end highslide container 2 --> was an ended div tag. I did not found a starting tag for it and deleting this tag fixed the problem.
Title: Re: RSGallery2 breaks design Post by: krazekimmy on May 03, 2007, 09:25:36 am I was having the same problem, in my case it was testing out fine on a mac in Firefox and Safari but broken on a PC in internet explorer - as a temporary fix I bit the bullet and put a table in my template css file... here's my original post: http://rsgallery2.net/component/option,com_smf/Itemid,17/topic,6420.0
That said, I did a quick check to see if removing the div tag worked on my staging site (with out the table addition) and it seems like it did!?!?! Though since I don't have a PC I decided to leave the table in on production site for now. Here are samples if you have a minute and can take a look to see if both are working I'd on a PC I'd be your best friend ;D Production Site (WITH table and removed </div> tag): http://iheartracing.com/index.php?option=com_rsgallery2&Itemid=67&page=inline&id=1&catid=1&limitstart=0 Stage Site (NO table just </div> tag removed): http://krazekimmy.com/index.php?option=com_rsgallery2&page=inline&id=2&catid=1&limitstart=1 Kimberly Title: Re: RSGallery2 breaks design Post by: matu on May 03, 2007, 10:18:10 am Both versions work fine with FF and also with IE7. ;)
Title: Re: RSGallery2 breaks design Post by: freddie on May 09, 2007, 11:41:02 am Finally i found the solution. In the rsgallery2.html.php file just before the comment: <!-- end highslide container 2 --> was an ended div tag. I did not found a starting tag for it and deleting this tag fixed the problem. thx so much for this post, saved me a lot of searching time :) Title: Re: [solved] RSGallery2 breaks design Post by: Dustin on May 15, 2007, 10:56:08 am I appreciate this and I'm using it now. It seems to work well as long as normal popups are used but when I enable fancy popups it breaks the layout. I've attached two screen caps showing the problem. You can see the site at www.birdiewordie.com
Title: Re: [solved] RSGallery2 breaks design Post by: Dustin on May 15, 2007, 10:58:16 am And, I viewed the source which I copied to .txt files. I'm attaching both working and broken samples. This is all way beyond my ability to correct so I'm posting it here in the hopes those of you with the skills can diagnose and correct this problem. Thanks!
Title: Re: [solved] RSGallery2 breaks design Post by: Daniel Tulp on May 15, 2007, 12:25:54 pm I suggest you keep it this way, and wait for the 1.13.0 release for the fancy popup, the frontend html is totally different there, and the problem will be solved
Title: Re: [solved] RSGallery2 breaks design Post by: Dustin on May 15, 2007, 12:43:28 pm I suggest you keep it this way, and wait for the 1.13.0 release for the fancy popup, the frontend html is totally different there, and the problem will be solved do we have an eta yet?Title: Re: [solved] RSGallery2 breaks design Post by: Daniel Tulp on May 15, 2007, 05:38:44 pm no, but we are working on it
Title: Re: [solved] RSGallery2 breaks design Post by: Dustin on May 15, 2007, 06:49:24 pm no, but we are working on it Good answer! I'll be glad to wait for it, you've got a great gallery and its working so far. Title: Re: [solved] RSGallery2 breaks design Post by: Scud on May 18, 2007, 10:08:28 am (pardon my poor english)
I also get a rather disturbing outcome on the RSGallery component page. It seems RSG2 invalidates the Versatility III CSS and the results can be seen here: (the text IS greek, it's not a bug!! ;D ;D ) http://216.22.25.49/newsite/component/option,com_rsgallery2/Itemid,50/lang,el/ (http://216.22.25.49/newsite/component/option,com_rsgallery2/Itemid,50/lang,el/) Any ideas on how to fix this are welcome! Title: Re: [solved] RSGallery2 breaks design Post by: Daniel Tulp on May 19, 2007, 03:41:11 am are you using the new 1.13.0 release
Title: Re: [solved] RSGallery2 breaks design Post by: Scud on May 19, 2007, 04:15:28 am are you using the new 1.13.0 release Hi Daniel, thanks for the reply. I just installed it and all templates excdept the Kirupa one give me problems like messing the layout (eg, line height, altering the list symbols etc) or items not found (in case of Flash templates) It seems like everything is setup to work from root (web) directory. But at this point I can only try this in a subdir. Unfortunately the Kirupa is not that nice but I suppose I can always use the .fla to make it look more attractive. Title: Re: [solved] RSGallery2 breaks design Post by: Daniel Tulp on May 19, 2007, 05:08:58 am please report any bugs or mistakes in the layout code or design of the templates in the template forum, they are still under development and I'm sure they could use some finetuning
Title: Re: [solved] RSGallery2 breaks design Post by: Dustin on May 25, 2007, 10:52:43 am I suggest you keep it this way, and wait for the 1.13.0 release for the fancy popup, the frontend html is totally different there, and the problem will be solved I just installed the latest version and tested the fancy pop ups. Everything seems to be working as expected, so thats a :D for the dev's. Title: Re: RSGallery2 breaks design Post by: Giulio on March 03, 2008, 05:51:16 pm I was having the same problem, in my case it was testing out fine on a mac in Firefox and Safari but broken on a PC in internet explorer - as a temporary fix I bit the bullet and put a table in my template css file... here's my original post: http://rsgallery2.net/component/option,com_smf/Itemid,17/topic,6420.0 That said, I did a quick check to see if removing the div tag worked on my staging site (with out the table addition) and it seems like it did!?!?! Though since I don't have a PC I decided to leave the table in on production site for now. Here are samples if you have a minute and can take a look to see if both are working I'd on a PC I'd be your best friend ;D Production Site (WITH table and removed </div> tag): http://iheartracing.com/index.php?option=com_rsgallery2&Itemid=67&page=inline&id=1&catid=1&limitstart=0 Stage Site (NO table just </div> tag removed): http://krazekimmy.com/index.php?option=com_rsgallery2&page=inline&id=2&catid=1&limitstart=1 Kimberly Hi, I am sorry for disturbing you. I tried with joomla 1.0 and now with joomla 1.51 I have RSGallery2 1.14.3 Alpha I can't install any new tamplete (this trouble is since when I am using the new version). Semantic doesn't work, micromacro and supersimple now are no working anymore. I tried to change the div in this file display.class.php with tables. 1 time it worked, I was happy, but now it doesn-t wotk. WHY!? Could you email me the corrected template to upload? Many, man, many thanks, Giulio Title: Re: [solved] RSGallery2 breaks design Post by: wayne atherton on March 26, 2008, 01:38:00 pm using standard template form the frontend userscannot create galleries
the error message is you must enter a description we use fckeditor as the default editor the description typed in is not being read. can you tell us the hack required so that the description is captured? Title: Re: [solved] RSGallery2 breaks design Post by: jscutler on August 15, 2008, 11:16:09 pm Can someone please tell me where this rsgallery2.html.php file is located? I can't find it and am having the same breaking problems with J1.5. Thanks
Title: Re: [solved] RSGallery2 breaks design Post by: CFW on September 11, 2008, 02:56:45 am Can someone please tell me where this rsgallery2.html.php file is located? I can't find it and am having the same breaking problems with J1.5. Thanks I also want to know where to find this file, or has it been left out in 1.16.0. I try all the suggestions but nothing seems to solve it for ie7.Thanks |