MyBB Community Forums

Full Version: toplinks welcome panel
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do i reduce the font in the toplinks welcome panel letters ? but only those
You can edit the header_welcomeblock_member template and put
<font size="1"> and </font> around the contents of the template.
ok good and where do i do the same for the bottom links ?
Go to the footer template. Surround the two <ul> tags with <font size="1"> </font>

So it should look something like:
<font size="1">
<ul>
					<li><a href="$settings[contactlink]">$lang->bottomlinks_contactus</a></li>
					<li><a href="$settings[homeurl]">$settings[homename]</a></li>
					<li><a href="#top">$lang->bottomlinks_returntop</a></li>
					<li><a href="#content">$lang->bottomlinks_returncontent</a></li>
					<li><a href="$settings[bburl]/misc.php?action=syndication">$lang->bottomlinks_syndication</a></li>
				</ul>		
</font>
ok done thx