Mobile view removes images from features #235
-
Thanks for the great template! I am modifying the template's features on the research page, and they look great on web but when viewed on mobile, the images for each feature are gone (screenshot attached). Is there a way to keep the image in mobile and have it be on top of the text for each feature? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Unfortunately this looks like a bug, specifically with mobile Safari (I'm assuming that's what you're using? Safari is usually the problematic browser, Chrome and Firefox usually do things right). A quick fix: Under I'll capture this bug in an issue. |
Beta Was this translation helpful? Give feedback.
-
It actually looked the same on both Safari and Chrome, but your fix worked great! Thanks |
Beta Was this translation helpful? Give feedback.
Unfortunately this looks like a bug, specifically with mobile Safari (I'm assuming that's what you're using? Safari is usually the problematic browser, Chrome and Firefox usually do things right).
A quick fix:
Under
@media (max-width: 800px) .feature-image {
in/_styles/feature.scss
, changewidth: unset;
towidth: 100%;
. That should fix it.I'll capture this bug in an issue.