Hello everyone, thought I had this solved but couldn’t quite get it figured!
I’m trying to make my home page section images have a full image on mobile, and stretch fill on desktop.
Also if possible I’d like to move the buttons under the headers (on-top the section images) on mobile so they don’t look staggered
Screenshots below. Also I should add this is my first time making a website!
Desktop
[IMG]http://i68.tinypic.com/2n8staa.png[/IMG]
Mobile
[IMG]http://i64.tinypic.com/x2tnqb.png[/IMG]
Hey Lukerk,
Would you be able to provide login info so that I can look into this further and add the required css? And, just to clarify you want to the background image to stretch the full width of the mobile screen?
Best regards,
Jordan Shannon
Yes I want the image to stay the same way as it is on the desktop site but be full size on mobile.
Hi,
To have the same quality in the mobile, you need to add this custom CSS code at Enfold Theme Options > General Styling > Quick CSS
@media screen and (max-width: 480px) {
#main .av-parallax-inner {
background-size: inherit !important;
}
}
Now, to align the buttons, add this custom CSS code:
@media screen and (max-width: 480px) {
#main .entry-content-wrapper {
text-align: center !important;
}
/* this code will align the first button */
#main .avia-builder-el-2 {
right: 60px;
}
}
Best regards,
John Torvik