I can confirm that there's a display error with Joomla 6.02 and J51_news 3.0.13.
For me, the featured images weren't displaying correctly. The individual resizing options for the views (mobile, desktop, tablet, etc.) were also doing the wrong thing.
I added the following code to the specific template style, making sure to include the "important" attribute!
However, this might not solve your problem.
@media only screen and (min-width: 960px) and (max-width: 1280px) {
.j51news966 .newsitem {width:30.00300030003% !important;}
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
.j51news966 .newsitem {width:100% !important;}
}
@media only screen and ( max-width: 767px ) {
.j51news966 .newsitem {width:100% !important;}
}
@media only screen and (max-width: 440px) {
.j51news966 .newsitem {width:100% !important;}
}
To resolve it, we definitely need the exact error message and a link to the problem; perhaps someone can help with that!