Support Forums

Full Version: Home | Contact | Search
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
MyBB. Where can I add icons to this legend above in "Home | Contact | Search | Memberlist"?

Been searching quite a bit for it and dont find where I will add these

Since I am making this thread I would also like to ask. For admin can I remove "IP logged" of each member in each post. I dont want to remove the function. Just the message below every post that says IP logged.
ACP > Templates & Styles > Templates > Your Theme > Header > Header

You can edit it from there, hope this helped.


EDIT: For the IP Logged, find the Postbit_admin templates, and comment out the IP Logged part.
For the IP logged message, you can also replace the "logged" with the IP:
http://community.mybb.com/thread-103855-...#pid756774

If you just want to remove that line, erease the content of the "postbit_iplogged_hiden" template.
(03-09-2012, 02:09 PM)BreShiE Wrote: [ -> ]ACP > Templates & Styles > Templates > Your Theme > Header > Header

You can edit it from there, hope this helped.


EDIT: For the IP Logged, find the Postbit_admin templates, and comment out the IP Logged part.

I see so I add the image I want as an icon next to ie "Search" as example.png somewhere?

And by comment out you mean a hash symbol before it like this? #
To comment:
PHP Code:
This code is not commented <!-- This code is commented --> This code is not commented 
(03-09-2012, 02:29 PM)iDiDiT Wrote: [ -> ]I see so I add the image I want as an icon next to ie "Search" as example.png somewhere?

And by comment out you mean a hash symbol before it like this? #

Just copy the pattern which is already there.

No, html comments are like this:
Code:
<!-- commented
out
content
goes here -->
(03-09-2012, 02:26 PM)cfillion Wrote: [ -> ]For the IP logged message, you can also replace the "logged" with the IP:
http://community.mybb.com/thread-103855-...#pid756774

If you just want to remove that line, erease the content of the "postbit_iplogged_hiden" template.

Ya sweet somewthing that worked the first time and it looks good too thanks broski
(03-09-2012, 02:31 PM)BreShiE Wrote: [ -> ]Just copy the pattern which is already there.

Sry, Idk if we are talking about the same thing I want to add a little icon like a magnifying glass next to the search at the top of the forum. Is that what you are talking about?
You will want to add <img src=""/> Between each of the anchor tags.

For example:
Code:
<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.gif" alt="" title="" />{$lang->toplinks_search}</a></li>