MyBB Community Forums

Full Version: [SOLVED] Change this header text
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I tried to change the text and link where it says 'help' on the top of the page.

This is the new code in header template:

<li><a href="{$mybb->settings['bburl']}/newpoints.php"><img src="{$theme['imgdir']}/toplinks/help.png" alt="HAPoitz" title="HAPointz" />{$lang->toplinks_help}</a></li>

but it still says Help, and not HAPointz. But if i click on it, the link works and is changed. But the text is still Help instead of HAPointz

How is this possible? THanks in advance
In you global.css find and add extra css style to this:

.menu ul a:link //This will affect all top links!

If you only what this link to be affected then add:
style="CSS style here"


------------------------

What exactly you trying to do to this text???
(2014-02-14, 02:46 PM)marcus123 Wrote: [ -> ]In you global.css find and add extra css style to this:

.menu ul a:link //This will affect all top links!

If you only what this link to be affected then add:
style="CSS style here"


------------------------

What exactly you trying to do to this text???

Thanks, awesome!
NP Smile