Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1262313

    Pbalazs89
    Participant

    Hi there,

    I’m working on a site and would like to have a similar menu:

    http://demo.oceanthemes.net/archi/header-bottom-light/

    here, there are these orange dots between the nav items. Is there a way to have this effect with X?

    Thanks!

    #1262327

    Paul R
    Moderator

    Hi,

    You can add this under Custom > Edit Global CSS in the Customizer.

    
    .x-navbar .desktop .x-nav>li:after {
        font-family: "FontAwesome";
        content: "\f111";
        position: absolute;
        right: -3px;
        top: calc(50% - 8px);
        font-size: 8px;
    }
    

    Hope that helps.

    #1262509

    Pbalazs89
    Participant

    Hi there, I added the code but unfortunately it does not make anything happen. Do I need to install some sort of plugin, or should this work out of the box?

    #1262653

    Jade
    Moderator

    HI there,

    Would you mind providing the URL of your site so that we can check it?

    Thank you.

    #1263498

    Pbalazs89
    Participant
    This reply has been marked as private.
    #1263509

    Christopher
    Moderator

    Hi there,

    Please update your code in customizer to :

    .x-navbar .desktop .x-nav>li>a>span {
    border:none;
    }
    
    .x-navbar .desktop .x-nav>li:after {
        font-family: "FontAwesome";
        content: "\f111";
        position: absolute;
        right: -3px;
        top: calc(50% - 8px);
        font-size: 8px;
    }

    Hope it helps.

    #1265050

    Pbalazs89
    Participant

    Thank you so much!

    #1265054

    Christopher
    Moderator

    You’re welcome.

    #1265141

    Pbalazs89
    Participant

    Sorry, one more quick question:

    How do I remove the last dot, after kapcsolat? (there is no need for one after the last menu item)

    Thanks!

    #1265150

    Lely
    Moderator

    Hi There,

    Please use this custom CSS to remove the dot at the last item in the menu:

    .x-navbar .desktop .x-nav>li:last-child:after {
        content: '';
    }

    Hope this helps.

    #1265159

    Pbalazs89
    Participant

    Great thanks! I need to up my game. 🙂

    #1265164

    Lely
    Moderator

    You’re welcome!

    Cheers!