Ticket #35: sterile_subalbums.patch
| File sterile_subalbums.patch, 2.0 KB (added by anonymous, 2 years ago) |
|---|
-
themes/sterile/zen.css
173 173 float: left; 174 174 } 175 175 .albumdesc2 { 176 padding: 5px 20px 5px 20px;177 176 line-height: 18px; 178 177 } 179 178 180 179 181 180 /* Album Thumbnails 182 181 ------------------------------ */ 182 #albums { 183 float: left; 184 } 183 185 .album { 184 186 margin: 0 15px 15px 0; 185 187 float: left; … … 210 212 211 213 /* Individual Image 212 214 ------------------------------ */ 215 #images { 216 float: left; 217 clear: left; 218 } 213 219 .image { 214 220 margin: 0; 215 221 padding: 0; -
themes/sterile/album.php
11 11 <div id="main"> 12 12 13 13 <div id="gallerytitle"> 14 <h2><span><a href="<?=getGalleryIndexURL();?>" title="Gallery Index"><?=getGalleryTitle();?></a> | < /span> <?php printAlbumTitle(true);?></h2>14 <h2><span><a href="<?=getGalleryIndexURL();?>" title="Gallery Index"><?=getGalleryTitle();?></a> | <?php printParentBreadcrumb(); ?></span> <?php printAlbumTitle(true);?></h2> 15 15 </div> 16 16 17 17 <div id="padbox"> 18 18 19 < p class="albumdesc2"><?php printAlbumDesc(true); ?></p>19 <div class="albumdesc2"><?php printAlbumDesc(true); ?></div> 20 20 21 <div id="albums"> 22 <?php while (next_album()): ?> 23 <div class="album"> 24 <div class="imagethumb"> 25 <a href="<?=getAlbumLinkURL();?>" title="View album: <?=getAlbumTitle();?>"><?php printAlbumThumbImage(getAlbumTitle()); ?></a> 26 </div> 27 <div class="albumdesc"> 28 <small><? printAlbumDate("Date Taken: "); ?></small> 29 <h3><a href="<?=getAlbumLinkURL();?>" title="View album: <?=getAlbumTitle();?>"><?php printAlbumTitle(); ?></a></h3> 30 <p><?php printAlbumDesc(); ?></p> 31 </div> 32 <p style="clear: both; "></p> 33 </div> 34 <?php endwhile; ?> 35 </div> 21 36 <div id="images"> 22 37 <?php while (next_image()): ?> 23 38 <div class="image">
