Notifications
Clear all

[Solved] Long title icons bug in simplified layout

3 Posts
2 Users
3 Likes
676 Views
Posts: 108
Topic starter
(@hector)
Estimable Member
Joined: 5 years ago

Hello community.

There is a bug in the long title icons in the simplified layout.

In short titles the icon looks like this:

But in long titles the icon gets out of square:

How can I fix this mismatch?

Link with the demonstration of this problem: https://wpforo.com/community/wpforo-showcase/

2 Replies
Tutrix
Posts: 1247
(@tutrix)
Noble Member
Joined: 4 years ago

@hector

the issue comes from the css formatting

display: flex;

you can change that to "inline"

add this to custom css

#wpforo #wpforo-wrap .wpfl-2 .wpforo-topic-title {
    display: inline;
}
Posts: 108
Topic starter
(@hector)
Estimable Member
Joined: 5 years ago

You have me in love.

THANK YOU AS ALWAYS FOR YOUR HELP.