Tagged: enfold
Hey guys,
I’m using Enfold with a client – the client was insistent on using Instabuilder to create some of the content on their site.
It looks like some of Enfold’s CSS is interfering with the Instabuilder’s ability to be responsive
Example of it scaling incorrectly.
http://storyofgodseries.com/free-resources/free-bible-commentary-ebook-sermon-on-the-mount
Here’s another website we own that uses a different theme, and an example of Instabuilder scaling correctly:
http://www.faithgateway.com/making-your-small-group-work/
What do you suggest?
Hello andreanapier1985!
The responsive stops on mobile view if I’m correct. Please add this on your custom.css or Quick CSS:
@media only screen and (max-width: 767px) {
#wrapper {
width: 460px;
margin: 0 auto;
}
.opl-canvas {
overflow: hidden;
width: 500px;
}
}
Cheers!
Ismael
This is great! Thanks!