How do I center my navigation bar items?

  • Unknown's avatar

    The blog I need help with is http://thebraidedgirl.com/.
    >
    > I would like to center the navigation bar items. I’m using the Nuclear theme.
    >
    > Can you help me editing the css?
    >
    > The other problem i have is, that I would like to delete the line inside the
    > widget title. How does this work?
    >
    > Thank you so much for your help!

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

  • Unknown's avatar

    Hi thebraidedgirl

    This custom CSS should work to centre your menu.

    .main-navigation {
        float: none;
        margin-right: auto;
        margin-left: auto;
    }
    
    .menu-menu-container {
        text-align: center;
    }

    To add custom CSS

    Select Appearance > Customize > CSS from your Admin Dashboard and enter the custom CSS there.

    You need to be on the WordPress.com Premium Plan for custom CSS to save.

  • Unknown's avatar

    To delete the line inside the widget title:

    .widget-title:after {
        display: none;
    }
  • The topic ‘How do I center my navigation bar items?’ is closed to new replies.