MyBB Community Forums

Full Version: Footer Images
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I feel stupid asking, but how do I delete these and get rid of the white lines in image2


1:
[Image: 278821eeda92e0ef614783d4cae6d9aa.png]

2:
[Image: 4e130a5f4aaf20301773842c36c7ce58.png]

Thank you.
What's your URL man?

Or find and remove

<dl class="forum_legend smalltext">

footer or index template not sure
Index template under {$boardstats}

remove

<dl class="forum_legend smalltext">
	<dt><img style="vertical-align: middle; padding-bottom: 4px;" title="Forum Contains New Posts" alt="Forum Contains New Posts" src="images/Crow/on.png"></dt>
	<dd>Forum Contains New Posts</dd>

	<dt><img style="vertical-align: middle; padding-bottom: 4px;" title="Forum Contains No New Posts" alt="Forum Contains No New Posts" src="images/Crow/off.png"></dt>
	<dd>Forum Contains No New Posts</dd>

	<dt><img style="vertical-align: middle;" title="Forum is Locked" alt="Forum is Locked" src="images/Crow/offlock.png"></dt>
	<dd>Forum is Locked</dd>
</dl>
Thank you Smile Do you know how to get rid of them whit lines in the second pic?
What white line? Horizontal or vertical

forumbit_depth1_cat template find:

<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">

and change to

<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="0" class="tborder">

<table border="0" cellspacing="0" cellpadding="{$theme['tablespace']}" class="tborder">
Vertical
My last post should do the trick Wink
That didn't work for some reason, mmm Sad
Sorry it should be this one Smile

<table border="0" cellspacing="0" cellpadding="{$theme['tablespace']}" class="tborder">
Pages: 1 2