XF 2.0 Set max-width of a BBCode IMG on profile posts only?

Gossipy

Active member
Does anyone know how best to set the max-width of a BBCode IMG post, but limiting the styling to messages posted on user profiles?

I tried adding this to extra.less:

.profile-post .message .img
{
max-width: 75%;
}

but that didn't seem to work.

Thanks!
 
Does anyone know how best to set the max-width of a BBCode IMG post, but limiting the styling to messages posted on user profiles?

I tried adding this to extra.less:

.profile-post .message .img
{
max-width: 75%;
}

but that didn't seem to work.

Thanks!
Add to Extra.less template:
[data-template="whats_new_profile_posts"],
[data-template="member_view"] {
.message-body .bbImage {
max-width: 75% !important;
}
}
 
Top Bottom