![]() |
[General] Images - Printable Version +- MyBB Community Forums (https://community.mybb.com) +-- Forum: 1.8 Support (https://community.mybb.com/forum-175.html) +--- Forum: General Support (https://community.mybb.com/forum-176.html) +--- Thread: [General] Images (/thread-172651.html) |
Images - Rusty2009 - 2015-07-02 Hi can anyone tell me where the images are for this? As I've added some of my own links but it's just giving me the magnifying glass Many thanks Rusty. RE: Images - Ad Bakker - 2015-07-02 These are packed in a so-called "sprite" image file. In this case it is the /images/headerlinks_sprite.png. When you want to replace them by others, you have 2 options:
RE: Images - Rusty2009 - 2015-07-02 Thank-you for the quick reply. Ok so I've made my own sprite using the link you provided thank-you, I've uploaded that to and replaced the old one but still nothing new. Do I have to name the images as per the links? so subscription usermap? This is what I've put in the header templete <li><a href={$mybb>settings['bburl']}/mysubscriptions.php"title="subscriptions"alt="subscriptions">subscriptions</a></li> <li><a href="{$mybb->settings['bburl']}/usermap.php" title="usermap" alt="usermap">usermap</a></li> RE: Images - Ad Bakker - 2015-07-02 To be honest I do not completely understand. Did you replace the old headerlinks_sprite.png by a new one? If so, it can be that it has no direct effect because things are cached. Try: AdminCP -> Tools & Maintenance -> Cache Manager > Reload & Rebuild All What you want to achieve wirh these additional lines in the header template I really don't understand. It is probably theme/plugin related? Because mysubscriptions.php and usermap.php are not part of the MyBB core source. RE: Images - .m. - 2015-07-02 image icons for the new links need suitable style properties. can we have your forum url so that someone can check ? RE: Images - Ad Bakker - 2015-07-02 .m. has enlightened me ![]() Perhaps it is even sufficient to show the line from the template with the <li> for the Calendar or Memberlist. From that it can be dedused how your additional lines must be composed. RE: Images - Rusty2009 - 2015-07-02 I have managed to get so far now I've added the following into the Global.css which has allowed the images to show.
and edited all -px of the other lmages but I am not getting the image for user map to display it just shows the subscriptions image. Here is a link to my site http://www.vxoc.org.uk/forum/index.php RE: Images - .m. - 2015-07-02 for the subscriptions link you have to add class subscriptions and for the usermap link you have to add class ausermap
RE: Images - Rusty2009 - 2015-07-02 Thank-you both for your help on this and thanks .m. that code worked a treat. |