diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-03-28 17:46:24 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-03-28 17:46:24 +0000 |
commit | e45a654715c5db44e60527513d7d8255f8d20221 (patch) | |
tree | 952306e5ae26ec498fb0f6508247fc4853add708 /views/default/object/image.php | |
parent | 5ef1dd4c79fd5413a1983a4faf96cf3a44c024ba (diff) | |
download | elgg-e45a654715c5db44e60527513d7d8255f8d20221.tar.gz elgg-e45a654715c5db44e60527513d7d8255f8d20221.tar.bz2 |
cleaned up and standardized the css markup
Diffstat (limited to 'views/default/object/image.php')
-rw-r--r-- | views/default/object/image.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/views/default/object/image.php b/views/default/object/image.php index 67fd87bfb..3aa9bab8e 100644 --- a/views/default/object/image.php +++ b/views/default/object/image.php @@ -19,7 +19,7 @@ if (get_input('search_viewtype') == "gallery") { ?> - <div class="album_images"> + <div class="tidypics_album_images"> <a href="<?php echo $file->getURL();?>"><img src="<?php echo $vars['url'];?>mod/tidypics/thumbnail.php?file_guid=<?php echo $file_guid;?>&size=small" border="0" alt="thumbnail"/></a> </div> <?php @@ -42,7 +42,7 @@ if (!$vars['full']) { //simple gallery view ?> - <div class="album_images"> + <div class="tidypics_album_images"> <a href="<?php echo $file->getURL();?>"><img src="<?php echo $vars['url'];?>mod/tidypics/thumbnail.php?file_guid=<?php echo $file_guid;?>&size=small" border="0" alt="thumbnail"/></a> </div> <?php @@ -79,8 +79,8 @@ <?php echo '<div id="tidypics_desc">' . autop($desc) . '</div>'; - echo '<div id="image_full">'; - echo '<div id="image_nav">' . $back . $next . '</div>'; + echo '<div id="tidypics_image_full">'; + echo '<div id="tidypics_image_nav">' . $back . $next . '</div>'; if ($next) echo '<a href="' . $vars['url'] . 'pg/photos/view/' . $_SESSION['image_sort'][$current+1] . '">'; echo '<img src="' . $vars['url'] . 'mod/tidypics/thumbnail.php?file_guid=' . $file_guid . '&size=large" border="0" alt="' . $title . '"/>'; if ($next) echo '</a>'; |