Jump to content

[resolved] dividing line in the navigation bar


fabriceunko

Recommended Posts

Hello, foundation into the skin in the navigation bar there is a drop-down menu if in a sub category PLUSIEUR was gategories. I would like to put a separation (a line) between each name gategorie. can you tell me how?

Thank you.

Edited by fabriceunko
Link to comment
Share on other sites

/css/foundation.css

At line 1842;

top-bar-section ul li {
    background: #333;
}

add, border-right: 2px solid #FFF;

so it'll look like;

top-bar-section ul li {
background: #333;

border-right: 2px solid #FFF;
}

 

--------------------------------------------------------------

or this;

.top-bar-section ul li {
    background: #333333;
}
.top-bar-section ul li + li:after {
content: "";
background: #ccc;
position: absolute;
bottom: 25%;
left: 0;
height: 50%;
width: 1px;
}

 

 

Edited by Lastwolf
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...