I changed position of Date & time................ now it's on right hand side............. but why there is a DOT(.) appearing before Date & time........... how we can remove it........... as shown in picture...........
Did you tried with <br />?
Lainaus käyttäjältä: bluedevil - tammikuu 16, 2012, 09:56:12 AP
Did you tried with <br />?
<br /><li>', $context['current_time'], '</li><br /> this making no change in dot or anything else..............
this is in my index.template.php
<p>', $context['random_news_line'], '</p>';
echo ' <li>', $context['current_time'], '</li>
</div>
</div>
<br class="clear" />';
Hi, you need to remove the <li>.
<p>', $context['random_news_line'], '</p>';
echo $context['current_time'], '
</div>
</div>
<br class="clear" />';
Kays.......... Dot is gone, but Time and News are in one line........... there is need of one line space between News and Date/Time............ how we can make one line space............ please see the picture attached.........
Try this out:
<p>', $context['random_news_line'], '</p><br />';
echo $context['current_time'], '
</div>
</div>
<br class="clear" />';
Yes............ now ok.............thanks............