MyBB Community Forums

Full Version: How to put a forum link in a button ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Not sure if have question in correct forum, please move if necessary.

Where should look for how to put a forum link like...

<a href="{$forum_url}">{$modlist}{$subforums}</a>

in a button display form like...

<input type="submit" value="SPECIAL 'GO' TEXT HERE" class="button"/> ?

Tried some modifications, but still looking.



Try this code

<input type="button" name="button" value="button" onclick="window.location='http://www.site.com'">
(2012-02-14, 08:51 PM)BleepyEvans Wrote: [ -> ]Try this code
<input type="button" name="button" value="button" onclick="window.location='http://www.site.com'">

Thank you very much that did it !
<input type="button" name="button" class="smalltext" value="SPECIAL TEXT" onclick="window.location='{$forum_url}{$modlist}{$subforums}'">