Enfold Menu does not look like the theme settings.
How do I remove the border lines around, but leave a | (pipe so it looks like this:
home | about | page | another page
See images.
https://dl.dropboxusercontent.com/u/52916400/enfold/enfold%20menu%20settings.png
https://dl.dropboxusercontent.com/u/52916400/enfold/menu%20lines.png
Hey saki!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.av-main-nav > li > a {
border: none!important; }
.av-main-nav > li > a > .avia-menu-text {
border-right: 1px solid #e2e2e2;
padding-right: 13px; }
.av-main-nav > li:last-child > a > .avia-menu-text {
border: none!important; }
Regards,
Yigit
Hi!
Try adding this too:
.avia-menu-fx {
width: 80%;
}
Adjust as needed.
Best regards,
Josue
That changes the size, but it’s not centered underneath.
Hey!
Try using this code instead (replace all):
.av-main-nav > li > a {
border: none!important; }
.av-main-nav > li > a > .avia-menu-text{
position: relative;
}
.av-main-nav > li > a > .avia-menu-text:after {
content: "";
position: absolute;
right: -13px;
border-right: 1px solid #e2e2e2;
height: 100%;
top: 0px;
}
.av-main-nav > li:last-child > a > .avia-menu-text {
border: none!important; }
Best regards,
Josue
That seems to work great!