Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1253754
    JW & Co.
    Participant

    Good afternoon,

    I am trying to add white cursors between each of the items on the menu at the top of webdeveloperandseo.joshuaweatherstone.com. This is the code I have, but it doesn’t seem to be working. Suggestions?

    .x-colophon.top .x-nav li {
    padding: 0 0.5em;
    margin: 0;
    border-right: 1px solid #000;
    }

    .x-colophon.top .x-nav li a {
    line-height: 14px;
    }

    .x-colophon.top .x-nav li:last-child {
    border:0;

    #1254125
    Friech
    Moderator

    Hi There,

    Thanks for writing in! By Cursors you mean right-borders, you can add this on your custom CSS on Customizer.

    .x-navbar .desktop .x-nav>li {border-right: 1px solid #fff;}

    Hope it helps, Cheers!

    #1254377
    JW & Co.
    Participant

    Dear Friech,

    This is great, but I’m wondering if I can make them shorter? Please see the footer menu at the bottom of thejewelrycenter.us for an example of what I am trying to accomplish.

    Thanks!

    #1254423
    Thai
    Moderator

    Hi There,

    Please delete the previous CSS and try with this CSS instead:

    .x-navbar .desktop .x-nav>li {
        position: relative;
    }
    .x-navbar .desktop .x-nav>li:after {
        content: "";
        width: 2px;
        background-color: #fff;
        height: 18px;
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -11px;
    }
    .x-navbar .desktop .x-nav>li:last-child:after {
        display: none;
    }

    Hope it helps 🙂

    #1256660
    JW & Co.
    Participant

    Perfect.

    Thanks!

    #1256740
    Prasant Rai
    Moderator

    You are most welcome. 🙂

  • <script> jQuery(function($){ $("#no-reply-1253754 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>