MyBB Community Forums

Full Version: Two Things i need help with
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi everyone i new to MYBB i've never used it before and im not the best at coding.
Im testing a layout and i was wondering how to do two things.

if you go here its my forum
http://www.michaelflowdyphotography.co.uk/test/

I was wondering is it possible to make a space between the gallery pic and the name - its small but it bothers me

and

As i have the portal set to the index there is no link to the forums how do i go about adding this and adding more context boxes to the left side thanks

thanks Shy
admin panel --> templates --> your theme's template set --> header templates --> header

find code similar to below
<li><a href="{$mybb->settings['bburl']}/ezgallery.php"><img src="{$theme['imgdir']}/icons/photo.gif" alt="" title="" />Gallery</a></li>

change above to
<li><a href="{$mybb->settings['bburl']}/ezgallery.php"><img src="{$theme['imgdir']}/icons/photo.gif" alt="" title="" />&nbsp;&nbsp;Gallery</a></li>


Thank you! done it Smile

thats one down
" thats one down " --> you had indicated in first post that the other one is resolved ..
I edited it, its about the portal now, not the text
^ in the previous edited header template, find code similar to below
<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.gif" alt="" title="" />{$lang->toplinks_search}</a></li>

add below to the top of above code
<li><a href="{$mybb->settings['bburl']}/index.php">Forums</a></li>