MyBB Community Forums

Full Version: Change path of an image
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have an image in my MyBB theme that has the same name as another, so one image is out of place.

One is the image for PMs which features on the header, the other is the PM button on threads.

They are both located (just the one image) at images/themename/pm.png, but I want the one that shows on threads to show as images/themename/pmmini.png.

How do I do this?
You need to edit postbit_pm template in your theme templates for that.
find this code :
[code]
<img src="{$theme['imglangdir']}/postbit_pm.gif" alt="{$lang->postbit_pm}" title="{$lang->postbit_pm}" /></a>
[/code/
change the postbit_pm.gif to your image name.
This would help you
regards
(2013-04-05, 10:50 PM)envira Wrote: [ -> ]You need to edit postbit_pm template in your theme templates for that.
find this code :
[code]
<img src="{$theme['imglangdir']}/postbit_pm.gif" alt="{$lang->postbit_pm}" title="{$lang->postbit_pm}" /></a>
[/code/
change the postbit_pm.gif to your image name.
This would help you
regards
Thanks!
You should mark Envira's reply as the "Thread that solved my Query"!

Wink
(2013-04-06, 08:44 AM)Cedric Wrote: [ -> ]You should mark Envira's reply as the "Thread that solved my Query"!

Wink
Thanks, I'll do that now.