• Resolved Jidy

    (@jidy)


    Hi guys,

    I hope that you are fine.

    How can I enlarge the width size of pages to my website? I would like to get the full Windows size automatically. Is it possible?

    My website is https://www.jdcoindre.com

    Let me know if it is possible.

    Thank you so much.

Viewing 12 replies - 1 through 12 (of 12 total)
  • hannah

    (@hannahritner)

    Hey Jidy,
    This defaults to 1170px but you can change with this:

    @media (min-width: 1200px)
    .container {
      width: 1300px;
    }
    }

    Just paste into your custom css box in theme options > advanced settings.
    Hope that works for you!

    Hannah

    Hey,
    So hannahs css is missing a bracket after the @media query and to go ahead and make it fullwidth on larger screens you can use css like this:

    @media (min-width: 1200px) {
    .container {
      width:100%;
    }
    }

    Kadence Themes

    Thread Starter Jidy

    (@jidy)

    Hi Hannah and kadence Themes Member ??

    Thank you so much
    I didn t understand why it doesent work, but now it s working

    Thank you very much Hannah and KT member ??

    Have a good week end

    Thread Starter Jidy

    (@jidy)

    Hi,

    I have a last problem since this modifications.

    All stuff in each page are not center.
    There are a little bit on the left.

    Can you take a look on it and let me know what can I do to fix it please ?

    https://www.jdcoindre.com

    Thank you so much ??

    hannah

    (@hannahritner)

    Try adding this, Jidy:

    @media (min-width: 1200px) {
    .col-lg-9 {
      width: 100%;
    }
    }

    Got all the brackets this time:) Hope that works for you!

    Hannah

    hannah

    (@hannahritner)

    Sorry Jidy, ignore my post above. You have an empty sidebar on your page. You just need to set the template to fullwidth.

    Hannah

    Thread Starter Jidy

    (@jidy)

    Hi,

    how I can do that ? (fullwidth where is it ?)

    Thank you ??

    Thread Starter Jidy

    (@jidy)

    In “Home Layout”, I already use the fullwidth
    No sidebar is activated

    In each page you can set a page template. You need to set the template to fullwidth if you want a full width page. The “home layout” in the theme options only controls the home page.

    Kadence Themes

    Thread Starter Jidy

    (@jidy)

    Hi,

    very cool =) it s working.

    I have a last question.
    How can I put the page titles in center? (All titles by default are on the left.)

    Can you help me about this last point please ?? ?

    Thank you again for your help

    hannah

    (@hannahritner)

    Hey Jidy,
    This css should do it:

    .page-header {
      text-align: center;
    }

    Hannah

    Thread Starter Jidy

    (@jidy)

    Cool :)))

    thank you, you re the best ??

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Enlarge the width size page’ is closed to new replies.