Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #360289

    I want to add specific separators like this: | between the topics in the main menu
    second: the same separators are missing in some spots on the second menu on top
    I have attached a screenshot to explain my meaning

    #360582

    Hi orit81!

    Thank you for using Enfold.

    Please provide a link to the website. We would like to check it. Make sure that you’re using Enfold 3.0.4 on WordPress 4.0.1.

    Cheers!
    Ismael

    #360674
    This reply has been marked as private.
    #360875

    Shalom Orit!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    #top .social_bookmarks li { float: left; }
    .av_secondary_right .sub_menu>ul>li:last-child, .av_secondary_right .sub_menu>div>ul>li:last-child { padding-right: 10px; }

    Cheers!
    Yigit

    #361358

    Shalom Yigit!
    Tks for the quick reply
    The code helped for the social icons menu but not for the main menu… is there a code for that also?
    Tks in advance
    Orit

    #361589

    Hi!

    Please add following code to Quick CSS as well

    .av-main-nav > li > a {
    border-left: 1px solid #e2e2e2;
    }

    Regards,
    Yigit

    #361783

    Does’nt work )-:

    #361942

    Hey!

    You can try this:

    span.avia-menu-text:before {
    content: '';
    display: block;
    width: 1px;
    height: 20px;
    position: absolute;
    background: rgb(195, 195, 195);
    top: 35px;
    left: 0px;
    }

    Regards,
    Ismael

    #361995

    Hi Ismael
    Still does not work )-:
    Have any idea why it does not work?
    Is it related to the factmy site s RTL?

    #362040

    it might work with the definition :after
    e.g.

    .menu-item a span:after {
        content: "|";
        padding-left: 10px;
    }

    positioning is the next point . After li doesn’t work because of line-height definition

    please give a link to your site

    #362044

    use this:

    .menu-item-top-level a:after {
        content: "|";
        padding-left: 10px;
    }

    then the Searchfield dont do it
    you even can give an extra color to it:

    .menu-item-top-level a:after {
        color: #900;
        content: "|";
        padding-left: 20px;
    }

    etc

    well you have to set definitions to mobile menu than to get rid of it

    #362047

    but this might work as well from Yigit:

    .av-main-nav > li > a span {
        border-right: 1px solid #666;
        padding-right: 20px;
    }
    #362238

    Hey!


    @orit81
    Can you please try the solutions posted by @guenni007 and post a screenshot showing the changes you would like to make if those solutions do not work as well?

    Best regards,
    Yigit

    #364608

    Hi !
    I am happy to tell you it worked!! Thank you Yigit, Ismael and @guenni007
    I used this code by @guenni007:
    .menu-item-top-level a:after {
    color: #900;
    content: “|”;
    padding-left: 20px;
    }
    and added padding right also
    here is the screenshot: http://snag.gy/80oeE.jpg
    now I just have to solve my font problem and everything will be great (but that’s another issue (-:)
    Thank you!!

    #365133

    Hey!

    glad it worked out for you. Let us know about your other problem in a new ticket. We are happy to assist you.

    Cheers!
    Andy

Viewing 15 posts - 1 through 15 (of 15 total)
  • You must be logged in to reply to this topic.