Viewing 2 replies - 1 through 2 (of 2 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    If you look at the styles through a browser developer toolbar, you can find the following widths being set:

    
    @media (max-width: 480px) {
    .container {
        width: 300px; 
    }
    @media (max-width: 767px)
    .container {
        max-width: 420px; 
    }
    .container {
        margin-right: auto;
        margin-left: auto;
    }
    .container, .navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container {
        width: 940px;
    }
    }
    
    • This reply was modified 8 years, 2 months ago by Andrew Nevins.
    Thread Starter tomwfrench

    (@tomwfrench)

    is that changeable?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Title not wrapping on mobile’ is closed to new replies.