Remove the gap when no forum description

Modifications for phpBB3.
Try the Mods here and share Your own Mods
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support

Remove the gap when no forum description

Post by Stoker »

Remove the gap when no forum description
Written by Stoker

When you have a forum with no forum description and subforums you will have an anoying gap between the forum title and the subforums.
See Screenshot:
sub1.gif
Lets fix this with a single edit of the template.

Open styles/prosilver/template/forumlist_body.html
Find:

Code: Select all

<br />
					{forumrow.FORUM_DESC}
Replace with:

Code: Select all

<!-- IF forumrow.FORUM_DESC -->
					<br />{forumrow.FORUM_DESC}
					<!-- ENDIF -->
Save, upload and refresh the template

The result:
sub2.gif
You do not have the required permissions to view the files attached to this post.