Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/05/2024 in all areas

  1. Hello, i'm sorry for this delayed response of mine. Search for this into your template forum - index - forum and replace this : {{if $forum->hasChildren()}} <ul class="ipsDataItem_subList ipsList_inline"> {{foreach $forum->children() as $subforum}} <li class="{{if \IPS\forums\Topic::containerUnread( $subforum )}}ipsDataItem_unread{{endif}}"> <a href="{$subforum->url()}">{{if \IPS\forums\Topic::containerUnread( $subforum )}}<span class='ipsItemStatus ipsItemStatus_tiny {{if !\IPS\forums\Topic::containerUnread( $subforum ) && !$subforum->redirect_on}}ipsItemStatus_read{{endif}}'><i class="fa fa-circle"></i></span>&nbsp;{{endif}}{$subforum->_title}</a> </li> {{endforeach}} </ul> {{endif}} {{if $forum->description}} {template="richText" group="global" app="core" location="global" params="$forum->description, array('ipsDataItem_meta', 'ipsContained')"} {{endif}} With this : {{if $forum->description}} {template="richText" group="global" app="core" location="global" params="$forum->description, array('ipsDataItem_meta', 'ipsContained')"} {{endif}} {{if $forum->hasChildren()}} <ul class="ipsDataItem_subList ipsList_inline"> {{foreach $forum->children() as $subforum}} <li class="{{if \IPS\forums\Topic::containerUnread( $subforum )}}ipsDataItem_unread{{endif}}"> <a href="{$subforum->url()}">{$subforum->_title}</a> </li> {{endforeach}} </ul> {{endif}} Add into your custom.css this : .ipsApp .cForumRow .ipsDataItem_subList { padding: 0 !important; background-image: none !important; display: grid; grid-template-columns: repeat(3, 33%); } .ipsApp .cForumRow .ipsDataItem_subList li:after { content: ''; font-family: "FontAwesome"; /* here you put what you want to appear before a subforum */ } .ipsApp .cForumRow .ipsDataItem_subList li.ipsDataItem_unread:after { content: ''; font-family: "FontAwesome"; /* here you put what you want to appear before an unread subforum */ } .ipsDataItem_subList li a:after { content: ''; }
    1 point
This leaderboard is set to New York/GMT-05:00
×
×
  • Create New...