Minor - fixing arrow order

skala
Julio Montoya 14 years ago
parent bc8f4c6015
commit c7264790ad
  1. 6
      main/auth/my_progress.php
  2. 3
      main/css/base.css

@ -90,9 +90,9 @@ if (!empty($dates)) {
$content .= '<div id="my_timeline">
<div class="actions">
<a href="#" id="prev"></a> <!-- optional -->
<a href="#" id="next"></a> <!-- optional -->
</div>
<a href="#" id="prev"></a> <!-- optional -->
<a href="#" id="next"></a> <!-- optional -->
</div>
<ul id="dates">
'.$dates.'

@ -3153,13 +3153,14 @@ a:active{
background: url("../img/action_next.png") no-repeat transparent;
height: 32px;
width: 32px;
float:right;
}
#my_timeline #prev {
background: url("../img/action_prev.png") no-repeat transparent;
height: 32px;
width: 32px;
float:right;
float:left;
}
#dates .selected {

Loading…
Cancel
Save