Date

Posted in: Newspaper
Post count: 11

Hello,

I would like to move the date in th top menu from the left side to the right side.

Is this possible?

Thank you,

Marcel

Post count: 7909

Hi,

Please edit menu-top.php file and make this changes: http://screencast.com/t/5WLieM71

<div class="span3">
     <?php
     if (td_util::get_option('tds_data_top_menu') == 'show') {
        $tds_data_time = td_util::get_option('tds_data_time_format');
        if ($tds_data_time == '') {
            $tds_data_time = 'l, F j, Y';
         }
         echo '<div class="td_data_time">';
         echo date_i18n(stripslashes($tds_data_time));
         echo '</div>';
     }
     ?>
</div>

Result: http://screencast.com/t/J1x188EPzVO5

Thanks!

Post count: 11

Thank you Alin.

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.