Horizontal Format for News Module
Posted: Mon May 28, 2007 3:30 am
I am trying to change the News format to display in a horizontal format instead of the vertical format. Has anyone been able to do this?
Content management as it is meant to be
https://forum.cmsmadesimple.org/
Do you mean the list of news summaries? If so, you will be able to do that through CSS by placing the list of summaries in an unordered list and giving the items agmiller33 wrote: I am trying to change the News format to display in a horizontal format instead of the vertical format. Has anyone been able to do this?
Code: Select all
display: inline-table;
Code: Select all
width: 100px;
Code: Select all
<ul class="newssummary"><!-- or some such thing -->
{foreach from=$entries item='entry'}
<li>
{* the rest of the news summary stuff *}
</li>
{/foreach}
</ul>
Code: Select all
.newssummary li {
display: inline-table;
width: 25%;
}