diff options
-rw-r--r-- | themes/default/css/screen.css | 8 | ||||
-rw-r--r-- | themes/default/images/ico-album.png | bin | 0 -> 397 bytes | |||
-rw-r--r-- | themes/default/views/album.html.php | 2 |
3 files changed, 9 insertions, 1 deletions
diff --git a/themes/default/css/screen.css b/themes/default/css/screen.css index aaeea9bd..007f30ed 100644 --- a/themes/default/css/screen.css +++ b/themes/default/css/screen.css @@ -476,6 +476,14 @@ form .gError, background-color: #e8e8e8; } +#gContent #gAlbumGrid .gAlbum h2 span { + background: transparent url('../images/ico-album.png') no-repeat top left !important; + display: inline-block; + height: 16px; + margin-right: 5px; + width: 16px; +} + /* Individual photo content ~~~~~~~~~~~~~~ */ #gContent #gItem { diff --git a/themes/default/images/ico-album.png b/themes/default/images/ico-album.png Binary files differnew file mode 100644 index 00000000..affa1b84 --- /dev/null +++ b/themes/default/images/ico-album.png diff --git a/themes/default/views/album.html.php b/themes/default/views/album.html.php index aab41034..f4baa210 100644 --- a/themes/default/views/album.html.php +++ b/themes/default/views/album.html.php @@ -18,7 +18,7 @@ <?= $child->thumb_tag(array("class" => "gThumbnail")) ?> </a> <?= $theme->thumb_bottom($child) ?> - <h2><a href="<?= $child->url() ?>"><?= $child->title ?></a></h2> + <h2><span></span><a href="<?= $child->url() ?>"><?= $child->title ?></a></h2> <ul class="gMetadata"> <?= $theme->thumb_info($child) ?> </ul> |