Hi, yesterday I solve my problem.
The problem disappeared when I replaced the following code:
@media (max-width:1201px)
{
.yuzo_related_post
{
display:none;
}
.Slider
{
display:block;
}
}
@media (min-width:1201px)
{
.Slider
{
display:none;
}
.yuzo_related_post
{
display:block;
}
}
this code
$(window).on(‘resize’,function()
{
if($(window).outerWidth()<1201)
{
$( “.yuzo_related_post” ).css({ “display”:”none” });
$( “.Slider” ).css({ “display”:”block” });
}
else
{
$( “.yuzo_related_post” ).css({ “display”:”block” });
$( “.Slider” ).css({ “display”:”none” });
}
Hi, in each post at the end.
For example:
http://tastywayoflife.com/znasz-mame-ktora-bywa-sfrustrowana-zachowaniem-dziecka-podrzuc-jej-te-trzy-wazne-przyczyny-i-rozwiazania/
The slider should be displayed on mobile devices.
If the resolution is greater than 1200px is hidden.