Tagged: enfold, mobile, responsive, width
Hi,
The website is to narrow when on mobile so the images get so small and hard to read text since its so few words per row. Its to much margin both from the text to the end of the container and then also to much background.
Please see the link to a image in the private section. Also link to a singel post and the start page where we have the same problem.
Can we make the background color much thinner/take upp less space and get the text closer to the edge of the container on single post?
Hi ev0l_!
You have following custom CSS code
.single #main > .container_wrap > .container {
background-color: white;
padding: 0 50px !important;
}
please change it to
@media only screen and (min-width: 768px) {
.single #main > .container_wrap > .container {
background-color: white;
padding: 0 50px !important;
}}
@media only screen and (max-width: 768px) {
.single #main .container_wrap {
background-color: white;
}}
Cheers!
Yigit