diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-01 19:16:58 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-01 19:16:58 +0000 |
commit | e206743bdb4980de005a74009c6c0bcbf42b24af (patch) | |
tree | 34dd56b0a1243d853a4b14ec1e90162e50a932e8 /mod/profile/views | |
parent | c15059c7cdc7e6c470e9590398f529e40b566621 (diff) | |
download | elgg-e206743bdb4980de005a74009c6c0bcbf42b24af.tar.gz elgg-e206743bdb4980de005a74009c6c0bcbf42b24af.tar.bz2 |
avatar menu fixed for non-200px wide avatars
git-svn-id: https://code.elgg.org/elgg/trunk@1265 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile/views')
-rw-r--r-- | mod/profile/views/default/profile/css.php | 7 | ||||
-rw-r--r-- | mod/profile/views/default/profile/userdetails.php | 3 |
2 files changed, 9 insertions, 1 deletions
diff --git a/mod/profile/views/default/profile/css.php b/mod/profile/views/default/profile/css.php index f766550ca..0b6d3f503 100644 --- a/mod/profile/views/default/profile/css.php +++ b/mod/profile/views/default/profile/css.php @@ -43,4 +43,9 @@ .usericon div.sub_menu a:visited,
.usericon div.sub_menu a:hover{ display:block;}
.usericon div.sub_menu a:hover{ background:#cccccc; text-decoration:none;}
-.usericon .item_line { border-top:solid 1px #dddddd;}
\ No newline at end of file +.usericon .item_line { border-top:solid 1px #dddddd;}
+
+
+#profile_icon_wrapper {
+ float:left;
+}
\ No newline at end of file diff --git a/mod/profile/views/default/profile/userdetails.php b/mod/profile/views/default/profile/userdetails.php index fba46d048..fd6c2c2bf 100644 --- a/mod/profile/views/default/profile/userdetails.php +++ b/mod/profile/views/default/profile/userdetails.php @@ -32,6 +32,7 @@ // wrap the icon and links in a div echo "<div id=\"profile_info_column_left\">"; + echo "<div id=\"profile_icon_wrapper\">"; // get the user's main profile picture echo elgg_view( "profile/icon", array( @@ -43,6 +44,8 @@ // display relevant links echo elgg_view("profile/profilelinks", array("entity" => $vars['entity'])); + echo "</div>"; + // close the icon and links div echo "</div>"; |