Navigation Bar CSS Customization

  • Unknown's avatar

    I am using the Expound theme and I would like to know if there’s a snippet to make the Custom Link that says “Cruz Azul FC” at the end of the navigation bar be aligned to the right or the end of the bar but only that particular custom link and not all the category pages. Thanks

    Also, is there a snippet to change the font of the navigation bar text?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hello there,

    Let me try to help you. Please use this css:

    // This code to make last link aligned right
    .navigation-main li:last-child{
      float: right;
    }
    
    // This code to change font for Navigation
    .navigation-main li{
     font-family: Geneva,Tahoma,Verdana,sans-serif
    }

    You can choose another font here for web safe font.

  • The topic ‘Navigation Bar CSS Customization’ is closed to new replies.