Hey,
Since a couple of days (for whatever reason) a few vBulletin forums do not show the inlineimg for their content anymore.
For those who do not know what I am talking about here is a screenshot:
Before:
After:
I don't recall to have any changes applied so I went deeper into the code and finally found a few things that made it fail.
We want to check our vbulletin.css file for that matter.
At the very bottom we had the following code
Note: Some forums may use a variable instead of '100%' but after all you get what the deal is about.
Now to get things working you want to either
• completely delete this piece of code
• fill an invalid number in (-1px for example)
• find the other piece of code that causes things to break
You can find vbulletin.css like this:
AdminCP > Styles & Templates > Style Manager > Edit Templates (Choose your design you want to change the .css of) > CSS Templates > vbulletin.css
I hope this helped you. Feel free to provide more solutions if you have any.
Best regards, Tracky
Since a couple of days (for whatever reason) a few vBulletin forums do not show the inlineimg for their content anymore.
For those who do not know what I am talking about here is a screenshot:
Before:
After:
I don't recall to have any changes applied so I went deeper into the code and finally found a few things that made it fail.
We want to check our vbulletin.css file for that matter.
At the very bottom we had the following code
Code:
.content img {
max-width: 100%;
}
Now to get things working you want to either
• completely delete this piece of code
• fill an invalid number in (-1px for example)
• find the other piece of code that causes things to break
You can find vbulletin.css like this:
AdminCP > Styles & Templates > Style Manager > Edit Templates (Choose your design you want to change the .css of) > CSS Templates > vbulletin.css
I hope this helped you. Feel free to provide more solutions if you have any.
Best regards, Tracky