Archived topic
Lines in Secondary Menu
5 replies · Started by Rohith on May 5, 2022
Viewing posts 1–6 of 6
Hi there, I want to achieve the line in between the secondary menu items. Same like this website
https://www.macrumors.com/
Hi Rohith,
Can you kindly provide the link to your site?
Hope to hear from you soon. :)
Here's the link of my site. Check private.
Hi there,
try adding this CSS:
.secondary-navigation .main-nav>ul li:not(:last-child) {
border-right: 1px solid #000;
}
This worked but, I want a little space at the top and bottom of the line same like this website
https://www.macrumors.com/
Add this CSS:
#secondary-navigation .main-nav > ul {
padding-top: 5px;
padding-bottom: 5px;
}
This archived topic is closed to new replies.