Home | Contact | Search - Printable Version +- Support Forums (https://www.supportforums.net) +-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87) +--- Forum: Webmaster Support (https://www.supportforums.net/forumdisplay.php?fid=36) +---- Forum: Forum Software Help (https://www.supportforums.net/forumdisplay.php?fid=49) +---- Thread: Home | Contact | Search (/showthread.php?tid=25544) |
Home | Contact | Search - iDiDiT - 03-09-2012 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. RE: Home | Contact | Search - BreShiE - 03-09-2012 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. RE: Home | Contact | Search - cfillion - 03-09-2012 For the IP logged message, you can also replace the "logged" with the IP: http://community.mybb.com/thread-103855-post-756774.html#pid756774 If you just want to remove that line, erease the content of the "postbit_iplogged_hiden" template. RE: Home | Contact | Search - iDiDiT - 03-09-2012 (03-09-2012, 02:09 PM)BreShiE Wrote: ACP > Templates & Styles > Templates > Your Theme > Header > Header 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? # RE: Home | Contact | Search - cfillion - 03-09-2012 To comment: PHP Code: This code is not commented <!-- This code is commented --> This code is not commented RE: Home | Contact | Search - BreShiE - 03-09-2012 (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? Just copy the pattern which is already there. No, html comments are like this: Code: <!-- commented RE: Home | Contact | Search - iDiDiT - 03-09-2012 (03-09-2012, 02:26 PM)cfillion Wrote: For the IP logged message, you can also replace the "logged" with the IP: 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? RE: Home | Contact | Search - BleepyEvans - 03-14-2012 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> |