coppermine-gallery.com/forum

Support => cpg1.5.x Support => cpg1.5 themes (visuals) => Topic started by: solipsism on April 12, 2011, 12:03:24 PM

Title: Medium sized images timing out after clicking thumbs, but fine in slideshow?
Post by: solipsism on April 12, 2011, 12:03:24 PM
http://createspacestore.info/coppermine/

I am using the verwischt_giallo theme. I only modified it by adding one row of images in the theme table, so it shouldn't affect anything else.

I have never had this problem before. I click on the thumbnails and it opens the medium sized page, but the loading arrow just keeps spinning. The medium size never loads. The background code is there because I can click on the general area of the image and it forwards to the full sized image. Alterntively If I click on slideshow, the medium size images show up fine.

I tried going back to the other default themes and medium works.

The only changes I made in the template.html file were adding a row to show the logo images, otherwise it is entirely as downloaded.
----------
<tr>
    <td width="100%" colspan="2"  style="background-color: #000000;" height="120"><a href="http://www.createspacestore.info"><img src="themes/verwischt_giallo/images/createspacestoreinfo_logo_yellowtext.png" style="float: left;" height="120"></a>
   
<a href="http://www.machinesandmagic.com"><img src="themes/verwischt_giallo/images/createspacestoreinfo_MachinesAndMagicAd.png" style="float: right;" height="120"></a>

</td>
  </tr>
---------

Title: Re: Medium sized images timing out after clicking thumbs, but fine in slideshow?
Post by: ΑndrĂ© on April 12, 2011, 12:17:11 PM
You have 2 options:
1) Disable the transparent overlay in config
2) Remove the loader image from the image class in style.css:
Quote.image {
    border:0px #cccccc solid;
    margin-top:4px;
    margin-bottom:4px;
    margin-right:15px;
    margin-left: 15px;
    /* filter:progid:dximagetransform.microsoft.shadow(color=#000000,direction=135,strength=6); */
    margin: 2px;
    background:url(images/loader.gif) no-repeat center;
}
Title: Re: Medium sized images timing out after clicking thumbs, but fine in slideshow?
Post by: solipsism on April 12, 2011, 12:31:37 PM
turning off the transparency worked (haven't tried the other option)

----
do you know if other themes have this quirk?
Title: Re: Medium sized images timing out after clicking thumbs, but fine in slideshow?
Post by: ΑndrĂ© on April 12, 2011, 12:41:47 PM
All themes that have this loader image will break images if the transparent overlay is enabled. But you can simply delete that line from the css file as suggested.
Title: Re: Medium sized images timing out after clicking thumbs, but fine in slideshow?
Post by: solipsism on April 12, 2011, 07:26:55 PM
Thanks.

Closed