Simple Machines Community Forum

SMF Support => SMF 2.0.x Support => Topic started by: flashsteam on January 02, 2018, 05:04:20 PM

Title: info center
Post by: flashsteam on January 02, 2018, 05:04:20 PM
I have been able to set all my boards un-collapse able How do I do this on the "info center"
Title: Re: info center
Post by: Sir Osis of Liver on January 02, 2018, 05:30:25 PM
BoardIndex.template.php



// Here's where the "Info Center" starts...
echo '
<span class="clear upperframe"><span></span></span>
<div class="roundframe"><div class="innerframe">
<div class="cat_bar">
<h3 class="catbg">
', sprintf($txt['info_center_title'], $context['forum_name_html_safe']), '
</h3>
</div>
<div>';



This will remove upshrink button and force info center uncollapsed for all users.
Title: Re: info center
Post by: flashsteam on January 02, 2018, 05:37:31 PM
Thank you that's what I needed.