|
Title: Image detail page not displaying properly? Post by: krazekimmy on April 22, 2007, 10:17:20 pm Quick question... I am testing RSGallery2 on my staging site and am having some issues with the image detail display page. The actual image is not displaying properly it is pushing wayyyy out to the right side and the tabs for Description, Voting, Comment & EXIF are displaying towards the bottom of the page with a long scroll bar and blowing out the footer. Any help would be appreciated...
I am running: Joomla! 1.0.12 RSGallery2 1.12.2 Alpha - SVN: 587 Sample of broken page can be found here: http://krazekimmy.com/index.php?option=com_rsgallery2&Itemid=34&page=inline&id=2&catid=1&limitstart=1 Main Gallery Can be found here: http://krazekimmy.com/index.php?option=com_rsgallery2&Itemid=34 Thanks! Kimberly Title: Re: Image detail page not displaying properly? Post by: krazekimmy on April 23, 2007, 12:16:32 pm A hah I figured it out - it was a template issue vs. an RSGallery issue...
Title: Re: Image detail page not displaying properly? Post by: Daniel Tulp on April 23, 2007, 01:49:43 pm could you share your solution with the community, other users seem to have similar problems, thanks
Title: Re: Image detail page not displaying properly? Post by: krazekimmy on May 03, 2007, 08:44:17 am Sorry for the delayed response. I was gone for the weekend and am just catching up on email. It turns out that my css "fix" only works on Safari (mac), Fireforx (mac) and Firefox (pc). It was still broken for Internet Expolorer (pc), AOL browers (and maybe more!??!) users - ARGH! Basically it fixed the rsgallery page but broke all the other pages for many PC browers. Looks like I have to go back to the drawing board.
I may have spoken too soon saying that it was my template problem (not sure though)... My template index page is built in CSS. It seems like there is something about the section of code on rsgallery index page that generates the single image details page that is slightly different from the gallery hompage?? That difference seems to be throwing things off. It almost like the table is not opening and closing properly. That said, I think I have a temporary solution more on that below. Until I have a chance to look more closely at the rsgallery code & my template code, I just opened up my template index page and inserted a table around the section that calls the body and it seems to be doing the trick. I've outlined the code below. I haven't been able to check it on a PC yet. I just bought parallels desktop for Mac so I can run winodws at the same time. Hopefully I can get that up and running in the next day or two so I can test in both environments. I have the temporary fix running on my production site now at http://www.iheartracing.com - if anyone on a pc has a chance to take a look and let me know if it looks OK that would be great. I've attached screen shots of how the pages should look for reference. Here's the code for a quick fix on the index page of a css template index page (note "main_content" may have a different name on your template i.e. "main_body" or something similar): <div id="main_content"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td><?php mosMainBody(); ?> </td> </tr> </table> </div> |