• Resolved newze

    (@newze)


    Hello,

    Could you please help us with the following:

    We would like to change the Fixed Width From 1100 px to 1300 px.

    Any Help or direction would greatly appreciated!

    Thanks so much in advance,

    Newze

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @newze,

    You should be able to tweak the width of the container by using the following CSS:

    .site-content {
       width: 1300px;
    }

    You can add that to the ‘Additional CSS’ section of the customizer. To get there from the dashboard you will want to head into ‘Appearance > Customize > Additional CSS’ and paste the code in there.

    Let us know how that works out.

    Evan

    Thread Starter newze

    (@newze)

    Hello Evan,

    Thanks so much for your help this works perfectly!

    The issue we still have is to make the Primary Menu Fullwidth and centered.

    Any help would be greatly appreciated!

    Thanks so much for your help!

    Greg

    Hi Greg,

    You can give the following a try to adjust the width of the menu and center it:

    
    .site-header-wrapper,
    #site-navigation {
       max-width: 1300px;
    }
    
    #menu-primary-menu {
       display: table;
       margin: 0 auto;
    }
    
    // Center the hero content
    .hero .hero-inner {
       margin: 0 auto;
    }
    

    Evan

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change Fixed Width’ is closed to new replies.