Medium sized images timing out after clicking thumbs, but fine in slideshow? Medium sized images timing out after clicking thumbs, but fine in slideshow?
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

Main Menu

Medium sized images timing out after clicking thumbs, but fine in slideshow?

Started by solipsism, April 12, 2011, 12:03:24 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

solipsism

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>
---------


Αndré

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;
}

solipsism

turning off the transparency worked (haven't tried the other option)

----
do you know if other themes have this quirk?

Αndré

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.