- This topic has 3 replies, 4 voices, and was last updated 6 years, 7 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- The forum ‘Showcase and Feedback’ is closed to new topics and replies.
These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.
Community Forums › Forums › Archived Forums › Showcase and Feedback › Infinity Pro Home Page Section Images
Tagged: media query
Is there a way to make the images on the home page sections to resize for mobile devices?
Here is my site: https://www.toomerscoffee.com/
When you look at it on mobile device the image remains full-sized and frankly no appeal.
https://www.toomerscoffee.com/Did you get an answer to this because I'm struggling with the same issue... if anyone has suggestions, please let me know...
If you want the entire image to be visible on a small screen, you could add this to your css:
.front-page-1 {
background-size: contain;
}
The problem is that it will be too short. You may be better off doing something like this in your @media query:
.front-page-1 {
background-position: -326px 0px;
background-size: auto 525px;
}
I've been thinking about using media queries for phones to call different background images and make adjustments to layout. This is a good article:
© 2024 WPEngine, Inc.