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

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Yes, this CSS accomplishes that;

    .main-navigation {
     position: fixed;
     left: 0;
    }

    Do you want it vertical too?

    Thread Starter brittanylynn01

    (@brittanylynn01)

    yes I would like it to be vertical like in the website I posted.

    thank you so much for your help!

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Does that theme come with a section in the dashboard named, “Custom CSS”, “Custom Styles” or “Jetpack”, or are you using a Child Theme?

    Thread Starter brittanylynn01

    (@brittanylynn01)

    I have not started it yet I am just inquiring to make sure what I want would work (sortof new to this). But I plan on making a child theme for it.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Then the styles you’ll need for a vertical menu are;

    .main-navigation ul {
     width: 100px;
    }
    
    .main-navigation ul li {
     float: none;
    }

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Header on Left?’ is closed to new replies.