change full width

Homepage Community Forums Guru Theme Support change full width

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #21824
    A. Gerardo
    Customer

      Can you tell me how to change the width of the full width template?

      #21825
      Wes
      Moderator

        The width in the Full Width template is based on the default size of the theme. It’s basically the Content area without the sidebar.

        The Guru theme is 1200px wide. You can find the default width for the entire site around line 624 in your style.css –

        .site-inner {
                max-width: 1200px;
        }

        So in order to change that width on the Full Width Template, you would need to add something like this –

        .full-width-content .site-inner {
                max-width: 1400px;
        }

        This allows you to change the width on the Full Width template without affecting the other pages on the rest of the site.

        #21826
        A. Gerardo
        Customer

          Hi wes, thanks very much. worked perfectly.

          #21828
          A. Gerardo
          Customer

            Hi wes. thanks for reply also how can i do the same with the landing page width?

            #21829
            Wes
            Moderator

              Try this code for the Landing Page –

              .landing-page .site-inner {
                  max-width:1400px;
              }

              It’s basically the same thing as above except .landing-page is added in front of .site-inner

              #21950
              A. Gerardo
              Customer
                This reply has been marked as private.
              Viewing 6 posts - 1 through 6 (of 6 total)
              • You must be logged in to reply to this topic.