Help with navigation bar widget

  • Unknown's avatar

    Hello. I need the bottom menu widget of my site to display in a centered horizontal format with simple ‘|’ in between. Next, I need to display a simple line of text underneath this bottom horizontal menu. Please help!

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

  • Unknown's avatar

    First off, unless you have the WordPress.com Business plan upgrade, you are not allowed to hide the WordPress.com and theme footer credits per our Terms of Service (#1 Attribution). See the Frequently Asked Questions on the Custom Design support page for more information.

    You are allowed to restyle the footer credits to better fit with your design as long as they remain readable, and you are also allowed to add text to the footer, such as a copyright statement. If you need help restyling, or adding to, the existing footer credits, let us know and we would be happy to help.

    Please remove this code from your custom CSS to restore the footer credits. Thanks in advance

    .site-info {
        display: none;
    }

    http://bellhugheshomes.com is a self-hosted WordPress site hosted at Godaddy. If you are talking about that site, I would suggest asking for help from the theme author directly or ask in the volunteer-based WordPress.org Themes and Templates forum.

    On the site associated with your username, https://bellhugheshomes.wordpress.com/, using Karuna, the following would put the menu items in the footer widget horizontal with a ” | ” between them.

    .footer-widgets-wrapper .widget-area {
        width: 100%;
    }
    #nav_menu-3 li {
        display: inline-block;
    }
    #nav_menu-3 li a {
        padding: 0 5px;
    }
    #nav_menu-3 li:after {
        content: "|";
    }
    #nav_menu-3 li:last-of-type:after {
        content: "";
    }
  • The topic ‘Help with navigation bar widget’ is closed to new replies.