What about simply:
.main-link {
display: flex;
align-items: center;
}
It should be okay in your case.
Thank you so much ![]()
Any discovery to this? I’ve been playing around with the code, but no luck
It’s a little more tricky.
I don’t know if it will work in all situations, but you can try and adjust the following:
For mobile only:
.topic-list-item {
td {
display: flex;
align-items: center;
max-width: 100%;
position: relative;
}
.topic-details {
flex: 2;
display: flex;
flex-direction: column;
min-height: initial !important;
position: initial !important;
overflow: visible;
.pull-right {
position: absolute;
right: 0;
top: 0.5em;
bottom: 0;
}
.num.activity {
bottom: 0.5em;
}
}
.topic-actions {
flex: 0 0 100%;
}
}

What a wonder! Thank you mate!
Another problem arises. The suggested topics table gets completely scattered/broken. Now what can be done
I’ve played around with as much CSS as I know. vertical-align doesn’t work…
Can you show me a screenshot of what you mean?
Then, you should try to target only the main topics list.
What about replacing the selector by: .contents .topic-list-item { ? (note the .contents)



