diff options
Diffstat (limited to 'engine')
| -rw-r--r-- | engine/lib/elgglib.php | 3 | ||||
| -rw-r--r-- | engine/lib/users.php | 1 | 
2 files changed, 3 insertions, 1 deletions
diff --git a/engine/lib/elgglib.php b/engine/lib/elgglib.php index 170750849..08f3d5e7c 100644 --- a/engine/lib/elgglib.php +++ b/engine/lib/elgglib.php @@ -2002,8 +2002,9 @@ function elgg_init() {  	elgg_register_menu_item('topbar', array(  		'name' => 'elgg_logo',  		'href' => 'http://www.elgg.org/', -		'text' => "<img src=\"$logo_url\" alt=\"Elgg logo\" />", +		'text' => "<img src=\"$logo_url\" alt=\"Elgg logo\" width=\"38\" height=\"20\" />",  		'priority' => 1, +		'link_class' => 'elgg-topbar-logo',  	));  	// Sets a blacklist of words in the current language. diff --git a/engine/lib/users.php b/engine/lib/users.php index 8333888a2..59bfa1259 100644 --- a/engine/lib/users.php +++ b/engine/lib/users.php @@ -1453,6 +1453,7 @@ function users_pagesetup() {  			'href' =>  $user->getURL(),  			'text' => "<img src=\"$icon_url\" alt=\"$user->name\" title=\"$title\" class=\"$class\" />",  			'priority' => 100, +			'link_class' => 'elgg-topbar-avatar',  		));  		elgg_register_menu_item('topbar', array(  | 
