Site logo

Archived topic

Divider Lines & Menu Categories

3 replies · Started by John on December 9, 2022

Viewing posts 1–4 of 4

Hey guys,

How can I about adding divider lines separating the different menu categories, similarly to the site: site1, as well as adding a vertical divider line separating post content and the right sidebar like the site: site2 ?

Thanks!

Hi there,

This for the nav lines:


/* horizontal lines */
.main-navigation {
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
}
/* vertical dividers */
.main-navigation .main-nav ul li a {
    border-left: 1px solid #ededed;
    border-right: 1px solid #ededed;
}

And this for to run a border down the right sidebars left hand edge:

.is-right-sidebar {
    border-left: 1px solid #ededed;
}

It worked flawlessly. Thank you, David!

Glad to hear that!

This archived topic is closed to new replies.