XF 2.2 problem viewing articles

@abdur7man@

Member
Good evening I have a problem viewing articles ... Since I have modified the display of member information in posts
Work well in normal display:
ar-2.webp
But in viewing articles it doesn't work well :
ar-1.webp
 
Hello,
it's your own changes in the original templates that are causing this. You should check them out.
We don't have your modified code so there's no chance of being able to help you.
 
Well, you have to modify with CSS the message-cell--user for thread type basical and thread view type article with this part of code:
For the basical thread view
CSS:
[data-template="thread-view"] {
    .message-cell.message-cell--user {
        flex: 0 0 200px;
    }
}
And for the article thread view
CSS:
[data-template="thread-view_type_article"] {
    .message-cell.message-cell--user {
        flex: your_own_settings
    }
}
 
Back
Top Bottom