On the forum page the graphic shows in the notice however it shows as a broken link on What's new, Media, Resources, and Members page.
Am I missing something? Or is this a bug?
Try changing that <img src> to use an absolute URL.
If your styles directory lives at http://yourforum.com/path/to/your/forum/styles, you would use /path/to/your/forum/styles/default/xenforo/icons/lestweforget.jpg as the image source.
Try changing that <img src> to use an absolute URL.
If your styles directory lives at http://yourforum.com/path/to/your/forum/styles, you would use /path/to/your/forum/styles/default/xenforo/icons/lestweforget.jpg as the image source.
Yup that worked, thanks.
Any idea why the other method worked on forum page and not the others?
I guess I'll have to include the full URL in the future for XF2? "styles/default/xenforo/icons/lestweforget.jpg" works fine in XF1.5.xx
Yup that worked, thanks.
Any idea why the other method worked on forum page and not the others?
I guess I'll have to include the full URL in the future for XF2? "styles/default/xenforo/icons/lestweforget.jpg" works fine in XF1.5.xx
Yup that worked, thanks.
Any idea why the other method worked on forum page and not the others?
I guess I'll have to include the full URL in the future for XF2? "styles/default/xenforo/icons/lestweforget.jpg" works fine in XF1.5.xx
We no longer hard code the base URL into the page, therefore URLs are always relative to the page you're on, rather than some base URL that we detect. This has been a big improvement behind the scenes as the base URL approach effectively screws up a lot of stuff (or at least makes it more difficult).
If your site is at the root like this, then it's just as simple as adding a / at the beginning e.g. /styles/blah.jpg. If your site is like ours, e.g. in the community directory then you would need to use /community/styles/blah.jpg.