Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #421140

    Hi.

    I would like to add an item to the main navigation that is in bold or even a different colour. Is it possible to assign custom CSS to make an individual menu item bold/different colour and can you confirm the best approach to this please?

    Thanks in advance,

    Sam

    #421143

    Hey sjwmobile!

    Using menu item ID’s it is possible with custom CSS. You can right click on Chrome or Firefox to inspect elements to find page ID’s http://i.imgur.com/HyPTCRg.jpg
    Example would be

    li#menu-item-755>a>.avia-menu-text {
    color: red;
    font-weight: bold; 
    }

    Cheers!
    Yigit

    #421158

    Fantastic – thanks Yigit.

    Do you know if it’s possible to align the menu item to the right (so that it sits alongside the search tool) as well?

    Can I just add align: right; or something similar to the CSS?

    Thanks!

    #421161

    Hi!

    You can add following code to Quick CSS

    li#menu-item-30 {
      position: relative;
      left: 33%;
    }

    But you would need to adjust the left value for different screensizes

    Best regards,
    Yigit

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