• Resolved trampolineguide

    (@trampolineguide)


    Hi there,
    I would like to increase the width of the content area. The sidebar width is perfect. I dont want to make any changes in that. My focus is on the content area. I feel if we increase the width of the content area it will be better for the readers.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Please try this:
    Go to Appearance > Customize > Additional CSS. Put the following:

    @media (min-width: 992px) {
      .container {
          width: 99%;
      }
    }

    Let me know how this goes. Thank you!

    Thread Starter trampolineguide

    (@trampolineguide)

    That didn’t work. Well, it increases the site width, but it also increases the sidebar width. I didn’t like that. As I mentioned in my support question I would like to keep the sidebar with as it is. I only wanted to increase the width for the content area. Could you please help me to keep the sidebar with the same and increase the content width.

    Theme Author SaltTechno

    (@salttechno)

    Hello,

    Thank you for using our theme.

    To achieve this, go to Appearance > Customize > Additional CSS and put the following CSS code:

    @media (min-width: 992px) {
      .st-content-area > .container {
          width: 98%;
      }
      .st-primary-wrapper.col-md-8 {
          width: 75%;
      }
      .st-sidebar-wrapper.col-md-4 {
          width: 25%;
      }
    }

    This should resolve your issue. Let us know if this doesn’t work. Upgrade to the premium version for quicker support.

    Regards,
    SaltTechno

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to increase the site width for the content area?’ is closed to new replies.