(2022-10-02, 06:15 AM)tempo Wrote: (2022-10-01, 11:40 PM)AmazOuz Wrote: (2022-10-01, 05:14 AM)tempo Wrote: thanks for the answer, it works!!!
One more question, i want to add the "rating" 5 stars (on mobile mode) into when i see a thread, when i see the post.
Is it possible?
Yes of course, go to Templates & Style >> Your theme >> star_ratings.css, find this & delete it :
@media (max-width: 768px) {
.star_rating_container {
display:none;
}
Tell me if it's okay 
no, it doesn't work...

Working with theme i want to inform you that the "Reply" page isn't mobile friendly.
Oh yeah thanks for reporting that bug. In fact I forgot to add "newreply.php" to "responsivity.css" properties.
You can go to Templates & Style >> Your theme >> responsivity.css Properties >> Add another >> Write newreply.php >> Save
It must be like this :
https://prnt.sc/OZuMXNb9zTCT
For the rating stuff you can go to css3.css, find this :
@media (max-width: 1280px)
#threads, #views, #replies, #lastpost, .scrollToDown, .scrollToTop, .star_rating_container, #rating {
display: none;
}
Delete the ", .star_rating_container, #rating". Make sure you've also deleted the code in the previous post, It should work
Tell me if it's okay.