MichaelBelgium
Thanks for your detailed help! (please don't worry about the timing of your reply, it's not late at all)
At that time, I didn't have much knowledge about Flarum's css settings and frontend development, but later I tried various modifications myself and it has achieved the desired effect, LOL. Here is my css code:
/* fix view counts: mobile */
@media (max-width: 767px) {
.IndexPage li.item-discussion-views {
position: absolute!important;
right: 70px!important;
}
}
/* fix view counts: PC */
@media (min-width: 768px) {
.IndexPage li.item-discussion-views {
margin-right: -70px;
width: 55px;
}
}