1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-01 05:55:02 +03:00

fix template topic

This commit is contained in:
Mzhelskiy Maxim 2017-02-14 20:25:29 +07:00
parent ebb3682c70
commit 9e67e789fd
2 changed files with 6 additions and 2 deletions

View file

@ -47,6 +47,10 @@
font-family: 'PT Sans', sans-serif; font-family: 'PT Sans', sans-serif;
font-size: 18px; font-size: 18px;
} }
.ls-topic-blogs .ls-topic-blogs-item {
float: left;
margin-right: 5px;
}
.ls-topic-blogs a { .ls-topic-blogs a {
color: #000; color: #000;
text-decoration: underline; text-decoration: underline;

View file

@ -55,9 +55,9 @@
{/if} {/if}
{if $_blogs} {if $_blogs}
<ul class="{$component}-blogs"> <ul class="{$component}-blogs ls-clearfix">
{foreach $_blogs as $blog} {foreach $_blogs as $blog}
<a href="{$blog.url}">{$blog.title}</a>{if ! $blog@last}, {/if} <li class="{$component}-blogs-item"><a href="{$blog.url}">{$blog.title}</a>{if ! $blog@last}, {/if}</li>
{/foreach} {/foreach}
</ul> </ul>
{/if} {/if}