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?
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?
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;
}