MyBB Community Forums

Full Version: Buttons.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i'm just wondering how i could replace the header text's with buttons.


example: i've added a Css button in my root/Root/button.png

how do i place that in here:


<li><a href="{$mybb->settings['bburl']}/banlist.php">Banlist</a></li>

I know if i put it on a upload site and place it like this it works.

<li><a href="{$mybb->settings['bburl']}/banlist.php">Urlhere</a></li>

but i want to add the button in the root.

thank you, Kadir.
<li><a href="{$mybb->settings['bburl']}/banlist.php"><img src="image_url_here" alt="" /></a></li>
so like this?


<li><a href="{$mybb->settings['bburl']}/banlist.php"><img src="Images/buttons.png" alt="" /></a></li>
Yep, like that.