Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #127594
    PeteGWebmaster
    Participant

    How can I widen the content section without affecting the mobile site? Last time you guys gave me a CSS code to fix this, it worked I just believe it broke my mobile site (if I remember correctly). So unfortunately I couldn’t use that code, however I really liked what it did

    The website is losangeleswebdesignseo dot com

    Another problem I am noticing is that the mobile version has a black background. Also there’s a sideways looking tiny envelope in the top left corner of my mobile site. Not sure why that is happening?

    Basically I would really like the images to show up larger than they are on the samples page but because the content section is not wide enough the images aren’t able to be as large as I’d like.

    Thank you

    #127633
    tikaram
    Keymaster

    @petegwebmaster : To increase the content width, add the following additional css.

    @media screen and (min-width: 991px){
    #main {
    	width: 70%;
    }
    .sidebar-primary {
    	width: 25%;
    }
    }

    The desktop version and the mobile version both have black background. The tiny envelope looks like the mobile menu but I noticed that you have removed the mobile menu. If you want to hide it add the following additional css.

    #mobile-header-left-menu {
    	display: none;
    }

    The content section on the sample page will also increase after you add above css. Let me know if this resolves the issue or not.

    Regards,
    Tikaram

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Content Width Increase?’ is closed to new replies.