Add Pipe Divider to Menu in Header Builder

Hi

I want to add a pipe divider to this submenu - after Roster and Classical.

http://concordportal.staging.wpengine.com/music-publishing/

I have tried adding css but have come up short.

Can someone help?

Thanks

Hi there,

Please add this code to the Element CSS of the inline navigation element:

$el .menu-item:not(:last-child):after {
  content: '';
  width: 1px;
  height: 10px;
  background-color: #000;

  position: relative;
  top: 1px;
}

Hope this helps.

Perfect!
Thanks

You are most welcome!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.