Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #65637
    Fede1583
    Member

    Hi,
    I’m working on my new theme and I would like to add a ‘/’ between each item (except the last one) in the fixed header top menu and add a 3px #4d788a border-bottom on hover, pretty much like in this website -> http://goo.gl/ZrL5xP.
    I could really appreciate any help because all my attempts were fruitless and I don’t know what else to try. Thank you in advance.

    PS. I’m using WAMP to work on / test the new theme, therefore I don’t have a link to my website to post, yet.

    #65664
    Sakin
    Keymaster

    @Fede1583: It’s difficult to support site without online URL. So, try adding in the following css in “Appearance => Theme Options => Custom CSS” box:

    #fixed-header-top ul li:after {
        color: #fff;
        content: "/";
    }
    #fixed-header-top ul li:last-child:after {
        content: none;
    }
    #fixed-header-top ul li a {
        display: inline-block;
    }
    #67029
    Fede1583
    Member

    Thanks Sakin!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Add '/' between menu items’ is closed to new replies.