Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #317038

    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

    #317439

    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

    #318753
    This reply has been marked as private.
    #318779

    Hi!

    Try adding this too:

    .avia-menu-fx {
        width: 80%;
    }

    Adjust as needed.

    Best regards,
    Josue

    #320835

    That changes the size, but it’s not centered underneath.

    #320843

    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

    #320844

    That seems to work great!

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Enfold Menu does not look like the theme settings.’ is closed to new replies.