Plogger Support Forum - not every thumbnails are loaded ...only when i refresh page. Thu, 28 Mar 2024 18:19:34 +0000 http://www.plogger.org/forum/ Lussumo Vanilla 1.1.10 not every thumbnails are loaded ...only when i refresh page. http://www.plogger.org/forum/comments.php?DiscussionID=180&Focus=840#Comment_840 http://www.plogger.org/forum/comments.php?DiscussionID=180&Focus=840#Comment_840 Sun, 06 Nov 2005 13:43:48 +0000 chrissie But if you click a ablum not every thumnail picture is displayed..
(I have to click the button refresh page sometimes to see every thumbnail)
I don't know what te problem could be.

Can anyone help me out?
here is my link:
http://www.webdesign-cs.com/album1

regards,
Chris]]>
not every thumbnails are loaded ...only when i refresh page. http://www.plogger.org/forum/comments.php?DiscussionID=180&Focus=842#Comment_842 http://www.plogger.org/forum/comments.php?DiscussionID=180&Focus=842#Comment_842 Sun, 06 Nov 2005 14:04:04 +0000 jack not every thumbnails are loaded ...only when i refresh page. http://www.plogger.org/forum/comments.php?DiscussionID=180&Focus=844#Comment_844 http://www.plogger.org/forum/comments.php?DiscussionID=180&Focus=844#Comment_844 Sun, 06 Nov 2005 14:56:27 +0000 chrissie not every thumbnails are loaded ...only when i refresh page. http://www.plogger.org/forum/comments.php?DiscussionID=180&Focus=846#Comment_846 http://www.plogger.org/forum/comments.php?DiscussionID=180&Focus=846#Comment_846 Sun, 06 Nov 2005 15:17:06 +0000 mike not every thumbnails are loaded ...only when i refresh page. http://www.plogger.org/forum/comments.php?DiscussionID=180&Focus=850#Comment_850 http://www.plogger.org/forum/comments.php?DiscussionID=180&Focus=850#Comment_850 Sun, 06 Nov 2005 16:21:44 +0000 jack not every thumbnails are loaded ...only when i refresh page. http://www.plogger.org/forum/comments.php?DiscussionID=180&Focus=860#Comment_860 http://www.plogger.org/forum/comments.php?DiscussionID=180&Focus=860#Comment_860 Mon, 07 Nov 2005 07:57:32 +0000 chrissie But only with my album i see this problem, not with others using the plogger script..]]> not every thumbnails are loaded ...only when i refresh page. http://www.plogger.org/forum/comments.php?DiscussionID=180&Focus=972#Comment_972 http://www.plogger.org/forum/comments.php?DiscussionID=180&Focus=972#Comment_972 Fri, 11 Nov 2005 05:44:53 +0000 chrissie not every thumbnails are loaded ...only when i refresh page. http://www.plogger.org/forum/comments.php?DiscussionID=180&Focus=1531#Comment_1531 http://www.plogger.org/forum/comments.php?DiscussionID=180&Focus=1531#Comment_1531 Tue, 13 Dec 2005 12:56:12 +0000 micheal
Edit the file: gallery.css in the directory (css)

css/gallery.css, add this at the top:

* html .thumbnail a:hover {
height: 1px;
}

If it doesn't work, try this:
* html .slides li {
height: 1px;
}

The first lines worked great with mine album!
Thanks to Derek de Jong!]]>
not every thumbnails are loaded ...only when i refresh page. http://www.plogger.org/forum/comments.php?DiscussionID=180&Focus=1536#Comment_1536 http://www.plogger.org/forum/comments.php?DiscussionID=180&Focus=1536#Comment_1536 Tue, 13 Dec 2005 20:29:14 +0000 ddejong http://positioniseverything.net/explorer/peekaboo.html

The solution is called the "Holly Hack" by Holly Burgevin. It triggers a property in IE known as "hasLayout" by giving it a height. Think of it as a block-level-block-level element. Why 1px? Because IE honors (contrary to spec) the contents over the container; so when you put in something 100px tall, IE stretches the containing box. (This can be controlled with the overflow property.) Nothing else does, which is why we use the star-hack (in IE, there's a mysterious root element ABOVE html, which, if you know the DOM, is contrary to spec -- HTML should be the granddaddy element). Nobody knows what to call it, but * -- the CSS wildcard -- does the trick. By adding the "* html" to the rule, all standards-compliant browsers (correctly) ignore it, while IE (before 7.0) applies it. Add up all of these IE failures, and you get the Holly Hack.

Cheers,
Derek]]>