fixed a bug I introduced when working on the testbubble theme - user's photo widget header div wasn't closed correctly

+ some opera-friendly style changes
This commit is contained in:
Devlon Duthie 2011-09-27 00:29:34 -05:00
commit 78c3210f6a
3 changed files with 87 additions and 45 deletions

View file

@ -34,7 +34,7 @@ function photos_init(&$a) {
$a->data['albums'] = $albums;
$o .= '<div class="vcard">';
$o .= '<div class="fn">' . $a->data['user']['username'] . '</h4>';
$o .= '<div class="fn">' . $a->data['user']['username'] . '</div>';
$o .= '<div id="profile-photo-wrapper"><img class="photo" style="width: 175px; height: 175px;" src="' . $a->get_baseurl() . '/photo/profile/' . $a->data['user']['uid'] . '.jpg" alt="' . $a->data['user']['username'] . '" /></div>';
$o .= '</div>';