Не могу понять как выводить новости не в столбик а в строчку — одна за другой.
<?php if ($items){ ?> <div class="widget_ticker"> <marquee direction="left" onmouseout="start(12)" onmouseover="stop(1)"> <?php foreach($items as $item) { ?> <?php if ($is_show_details) { ?> <div class="details"> <span class="-date"> <?php html(string_date_age_max($item['date_pub'], true)); ?> </span> </div> <?php } ?> <div class="title"> <a href="<?php echo $url; ?>"><?php html($item['title']); ?></a> <?php if ($item['is_private']) { ?> <span class="is_private" title="<?php html(LANG_PRIVACY_PRIVATE); ?>"></span> <?php } ?> </div> <div class="teaser"><?php echo $item[$teaser_field]; ?></div> <?php } ?> <?php } ?> </marquee> </div> <?php } ?>
вот так получается
а вот стили
.widget_ticker { height:40px; line-height:40px; float:left; color:#686868; font-size:12px; } .widget_ticker .details { float:left; margin-left: 10px; } .widget_ticker .title { float:left; margin-left: 10px; } .widget_ticker .teaser { float:left; margin-left: 10px; }