• Resolved kustv

    (@kustv)


    I would like to limit my page content width including the page title and the breadcrumbs, but header (meaning logo and menu) and footer should stay at 1440px.
    If tried `#content{
    max-width:1100px;
    margin:0 auto;
    }`

    but this way the page title and the breadcrums are staying at 1100px. WHat do I need to add to have the page title and breadcrumbs have a max-width of 1100px as well?

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

    (@hannahritner)

    Hey kustv,
    Try using this css:

    .container {
        max-width: 1100px;
    }
    .outside-top-headerclass .container, .footerclass .container  {
        max-width: 1440px;
    }

    Does that work for you?

    Hannah

    Thread Starter kustv

    (@kustv)

    Hello Hannah,
    I actually went the other way, set my page width to 1140 in the theme settings and adjusted my header and footer width. This is easier. Thank you though.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Limiting page, page title and breadcrumb width’ is closed to new replies.