Hi,
Would there be a way to add a vertical line to the right of top navigational elements like so:
http://i.imgur.com/oT1EGX9.jpg?1
E.
Hey!
Try adding this code to the Quick CSS:
#avia-menu > li > a:after{
content: "";
border-right: 2px solid #33cc00;
position: relative;
left: 15px;
}
#avia-menu > li:last-child > a:after{
content: "";
border: 0;
}
Make sure the > are written correctly.
Cheers!
Josue
Thanks so much Josue. It worked like a charm :)
E.