MyBB Community Forums

Full Version: Was working until i did the update!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: error.JPG]

Before i did the forum upgrade, you could see them images, now u just see the image link
Is the image upload? to that folder?
No thats not it. It must be a missing tag. Go through your theme W3 validate it, and it should work then.
As T0m said, go through the Validator - http://jigsaw.w3.org/css-validator/

But i would check:
- Missing tags, by using the validator
- check the files
- check the name of the file
- check the file extension (.png .gif etc)

If you continue to have issues, post back.
The only thing wrong with the code is that there's no closing tag, should have /> at the end but I wouldn't have thought that would stop it displaying... I think something may have been changed security wise that may effect it.
W3C CSS Validator results for http://footyfansforum.co.uk/forum/forumd...php?fid=59 (CSS level 2.1)
Congratulations! No Error Found.
The image shows on the home page, but when you click General Football or whatever, you just see the image link. Look http://footyfansforum.co.uk
You don't need to validate the CSS, it's the markup you'd want to validate: http://validator.w3.org

Isn't an issue with validation though, this is the problem... from the source:

<span class="active">&lt;img src=&quot;http://footyfansforum.co.uk/forum/images/football.gif&quot;&gt; General Football</span>

It's using the HTML entity version of < > and " instead of those actual characters in the source, it displays as < > and " on the page to us, but won't be parsed in the HTML... in the settings for the forum, where you've put the code for these images in, does it have < > and " showing or the HTML entity version?? If it's showing the HTML entity version, change it to the corresponding character and it should show again.
Title *
<img src="http://footyfansforum.co.uk/forum/images/football.gif"> General Football

Thats what i have in my forum setting
anyone