Tagged: featured, image size, mobile devices, table
Hi, in single post of my http://www.telemedicinaoggi.it, the featured image doesn’t fit the whole screen of the mobile phone, would it be possibile that ita fills the entire screen of every device?
Tks Gianluca from Italy
Hey Gianluca,
Thank you for the inquiry.
We found a lot of blog posts element in the home page displaying featured images. Which one would you like to modify? Please provide a screenshot using imgur, savvyify or dropbox for the screenshot.
Best regards,
Ismael
Basically every post.
When i see them from mobile devices the featured image dosn’t fit properly the screen -> https://imgur.com/a/YUILyzH
Another problem:
in https://www.telemedicinaoggi.it/abstract/ the table is not fully visible by mobile device, how can I do?
Thanks
Gianluca
Hi,
Your table has more content than will show on a mobile screen, try this css to make the table horizontally scroll:
@media only screen and (max-width: 767px) {
table {
display: block;
max-width: -moz-fit-content;
max-width: fit-content;
margin: 0 auto;
overflow-x: auto;
}
}
After applying the css, please clear your browser cache and check.
Best regards,
Mike