beerForo Well-known member Apr 29, 2021 #1 I want this closer to reactions so I want to float it middle or bottom of cell, any help appreciated. This is a Suggestion forum but also for Q&A thx!
I want this closer to reactions so I want to float it middle or bottom of cell, any help appreciated. This is a Suggestion forum but also for Q&A thx!
Russ Well-known member Apr 29, 2021 #2 This in extra.less should do the trick: Code: .message-cell.message-cell--vote { display: flex; align-items: center; } Or at the bottom: Code: .message-cell.message-cell--vote { display: flex; align-items: flex-end; padding-bottom: 10px; @media (max-width: @xf-responsiveMedium) { padding-bottom: 0; } } Upvote 2 Downvote
This in extra.less should do the trick: Code: .message-cell.message-cell--vote { display: flex; align-items: center; } Or at the bottom: Code: .message-cell.message-cell--vote { display: flex; align-items: flex-end; padding-bottom: 10px; @media (max-width: @xf-responsiveMedium) { padding-bottom: 0; } }
beerForo Well-known member Apr 29, 2021 #3 Awesome! I'm really liking it in the middle but testing bottom for activity thanks! Last edited: Apr 29, 2021 Upvote 0 Downvote
beerForo Well-known member Apr 29, 2021 #4 Just in case I want to target Suggestion and Q&A separately how would I do that? Upvote 0 Downvote