Plogger Support Forum - AIR Theme Modification Help.... Fri, 29 Mar 2024 01:11:23 +0000 http://www.plogger.org/forum/ Lussumo Vanilla 1.1.10 AIR Theme Modification Help.... http://www.plogger.org/forum/comments.php?DiscussionID=2186&Focus=8762#Comment_8762 http://www.plogger.org/forum/comments.php?DiscussionID=2186&Focus=8762#Comment_8762 Fri, 12 Sep 2008 01:37:22 +0000 truemitra LInk I want To Place 2 Albums or Collections in a Single Row.

I hope Somebody will Help Me.

Thank You So Much for Understanding mY Problem.]]>
AIR Theme Modification Help.... http://www.plogger.org/forum/comments.php?DiscussionID=2186&Focus=8765#Comment_8765 http://www.plogger.org/forum/comments.php?DiscussionID=2186&Focus=8765#Comment_8765 Fri, 12 Sep 2008 07:03:41 +0000 kimparsell
To accomplish what you are asking, open gallery.css for the Air theme and find this:

.collection {
/* .collection contains each individual collection or album in the list, as appropriate */
margin: 10px 0 0 0;
padding: 10px 0;
float: left;
text-align: left;
border: 1px solid #bed2d2;
width: 798px; /* set this width to be 2px less than the width of #wrapper to account for borders */
}


Change it to this:

.collection {
/* .collection contains each individual collection or album in the list, as appropriate */
display: block;
padding: 10px;
text-align: center;
position: relative;
float: left;
margin: 5px;
text-align: center;
border: 1px solid #bed2d2;
width: 368px;
}


Upload the new stylesheet to the proper folder on your server, then either refresh the page or clear your cache before viewing your gallery again.]]>
AIR Theme Modification Help.... http://www.plogger.org/forum/comments.php?DiscussionID=2186&Focus=8778#Comment_8778 http://www.plogger.org/forum/comments.php?DiscussionID=2186&Focus=8778#Comment_8778 Sat, 13 Sep 2008 01:52:34 +0000 truemitra Thank You So much for Give me Solution. But it is Not working in internet Explorer 6. Actually the Problem is that I am still getting one album/collection per raw but also the space for the second one(in IE6). see linkNo Problem !!! I am very HAPPY with Firefox. But if it is Possible than Please tell me.]]> AIR Theme Modification Help.... http://www.plogger.org/forum/comments.php?DiscussionID=2186&Focus=8780#Comment_8780 http://www.plogger.org/forum/comments.php?DiscussionID=2186&Focus=8780#Comment_8780 Sat, 13 Sep 2008 04:20:47 +0000 kimparsell
You need to adjust the width (width: 368px;) in the above change downward a few pixels until until you get two collections or albums per line instead of one. Try changing it to width: 365px;, then check again in IE6.

I just checked that link in FF 2.0.0.16 and Opera 9.5, and I'm seeing two collections per line, and 2 albums per line; however, IE6 is only showing one per line at the moment. Make the change that I suggested and it should fix it.]]>
AIR Theme Modification Help.... http://www.plogger.org/forum/comments.php?DiscussionID=2186&Focus=8782#Comment_8782 http://www.plogger.org/forum/comments.php?DiscussionID=2186&Focus=8782#Comment_8782 Sat, 13 Sep 2008 05:09:15 +0000 truemitra