This thread is over two years old and may be outdated. Please create a new thread if you need help, or email us if you have an active Premium license.

Horizontal Footer Menu

Resolved 5 replies premiumthemetheme-vantage
10 years ago · Last reply by Andrew Misplon 10 years ago

Hi I’m kind of new here and new to WordPress. I’m using Vantage Premium.
I want to add a horizontal menu to the footer so I tried o Appearance > Widgets, Footer, Layout Builder, Add Row, Add Widget, Custom Menu and then added the following to Appearance > Custom CSS: as listed in a previous thread.
/* Vantage Horizontal Footer Menu */
#footer-widgets .widget.widget_nav_menu ul {
text-align: center;
}
#footer-widgets .widget.widget_nav_menu li {
display: inline-block;
float: none;
margin-right: 16px;
}
#footer-widgets .widget.widget_nav_menu li:last-of-type {
margin-right: 0;
}
The Menu is in the Footer but I’m still getting a vertical Menu
Any help would be appreciated.
Mike

URL: http://www.qdmfg.com

This is our free support forum. Replies can take several days.

Need fast email support? Get SiteOrigin Premium

Replies

5
  1. Andrew Misplon Staff 10 years, 2 months ago

    Hi Mike

    Looks like you’ve made progress. If you still need a hand, let me know :)

  2. Mike 10 years, 2 months ago

    Yes, I was trying to add the code on the Home Page CSS but found it needed to be added on Dashboard > Appearance > Custom CSS.

    Is there a way I can add vertical lines separating (between) the Menu pages?

    Again, thanks for your help.

    Mike

  3. Andrew Misplon Staff 10 years, 2 months ago

    Sure :)

    Try replacing your Custom CSS for this to:

    /* Horizontal Footer Menu */
    #footer-widgets .widget.widget_nav_menu {
    	width: 100%;
    }
    #footer-widgets .widget.widget_nav_menu ul {
    	text-align: center;
    }
    #footer-widgets .widget.widget_nav_menu li {
    	display: inline-block;
    	float: none;
    	margin-right: 16px;
    }
    #footer-widgets .widget.widget_nav_menu li:before {
    	content: "\007C";
    	font-family: FontAwesome;
    	margin-right: 16px;
    }
    #footer-widgets .widget.widget_nav_menu li:first-of-type:before {
    	content: none;
    	margin-right: 0;
    }
    #footer-widgets .widget.widget_nav_menu li:last-of-type {
    	margin-right: 0;
    }
  4. Mike 10 years, 2 months ago

    Wow!

    Thanks for the quick response. That works perfect!

  5. Andrew Misplon Staff 10 years, 2 months ago

    Super :) Glad to hear that did the trick.

    All the best.

Replies on this thread are closed.

Please create a new thread if you have a question, or purchase a SiteOrigin Premium license if you need one-on-one email support.

Have a different question or issue?

Start New Thread