Could you please advise why the endorsements only show on Desktop and not on mobile and tablets? Here is a link to the page with the issue:
hidden link
The endorsements are located on the left side below
"FOREIGN LANGUAGE
French"
The endorsements are images.
Thank you.
Hi there,
The issue is because of the theme that you use. In the smaller screens the sidebar is hidden by css code below:
@media only screen and (min-width: 480px) and (max-width: 767px)
.s4u-ful {
display: none;
}
So it seems that there are other places that are mobile-specific for your theme. You need to add the content there too.
But I am not sure and this is something that you need to contact your theme developer to know more about.
You can test by changing the theme to something else and add the same content to sidebar and it will show ok on smaller screens
Thank you.
My issue is resolved now. Thank you for your expertise, Christopher!