Simple Machines Community Forum

SMF Support => SMF 2.0.x Support => Topic started by: Wazza on April 30, 2012, 09:18:56 PM

Title: Would like to get more screen Real Estate and resize columns
Post by: Wazza on April 30, 2012, 09:18:56 PM
Would like to get more screen Real Estate

See the columns to the left of the Board heading (I have attached a pic of  the SMF screen area I mean as an exsample)

Ideally I would like to be able to remove the post tally column all together and have the last post column use less screen.

This way the the Board headers and info could use more of the screen  ;) 
(making this better in my option to view for smaller screens)

Cheers Wazza

Title: Re: Would like to get more screen Real Estate and resize columns
Post by: Sir Osis of Liver on April 30, 2012, 11:30:29 PM
Ok, to remove the posts/topics counts -

In BoardIndex.template.php find this:



// Show some basic information about the number of posts, etc.
echo '
</td>
<td class="stats windowbg">
<p>', comma_format($board['posts']), ' ', $board['is_redirect'] ? $txt['redirects'] : $txt['posts'], ' <br />
', $board['is_redirect'] ? '' : comma_format($board['topics']) . ' ' . $txt['board_topics'], '
</p>
</td>



Change to this:



// Show some basic information about the number of posts, etc.
echo '
</td>
<!--td class="stats windowbg">
<p>', comma_format($board['posts']), ' ', $board['is_redirect'] ? $txt['redirects'] : $txt['posts'], ' <br />
', $board['is_redirect'] ? '' : comma_format($board['topics']) . ' ' . $txt['board_topics'], '
</p>
</td-->




To adjust the width of the last post column -

In /css/index.css find this:



table.table_list tbody.content td.lastpost
{
line-height: 1.3em;
font-size: 85%;
width: 24%;
}



Adjust the width: parameter.

Title: Re: Would like to get more screen Real Estate and resize columns
Post by: Wazza on April 30, 2012, 11:37:26 PM
Krash, I may have to offer you a Job  :D when I finally get this forum maybe to make some money  ;D   :)

Thank you once again for all your help  ;D

Will try this cheers!

Wazza
Title: Re: Would like to get more screen Real Estate and resize columns
Post by: Wazza on May 01, 2012, 12:15:21 AM
Krash ...tried this and worked real well  :)

Again thank you

Wazza  ;)