HTML br is not needed. Using 'clear' in CSS instead.

This commit is contained in:
Sarven Capadisli 2009-04-07 23:45:22 +00:00
parent 79b1e3a488
commit a839daad2e
2 changed files with 3 additions and 1 deletions

View File

@ -345,7 +345,6 @@ class ShowstreamAction extends ProfileAction
$message .= sprintf(_('Why not [register an account](%%%%action.register%%%%) and then nudge %s or post a notice to his or her attention.'), $this->user->nickname);
}
$this->element('br', array('clear' => 'both'));
$this->elementStart('div', 'guide');
$this->raw(common_markup_to_html($message));
$this->elementEnd('div');

View File

@ -1156,3 +1156,6 @@ margin-bottom:18px;
.help dt {
display:none;
}
.guide {
clear:both;
}