Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #450526

    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?

    #450673

    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

    #451018
    This reply has been marked as private.
    #451062

    Hi!

    Great, glad we could help :)

    Best regards,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘To narrow on mobile’ is closed to new replies.