Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
Can i make a row with this 3 links? I think its look better. Have anybody an idea.
Sure. If you insert a Custom Menu widget into the footer widget and then insert the following under Appearance > Custom CSS:
/* 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:before { content: "\0007C"; 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; }That should format your list as required.
Sorry, meant to say, insert a Custom Menu widget into the footer widget area at Appearance > Widgets. If you don’t want the same pages as your main menu you can just create another menu under Appearance > Menus and then select that menu from the Custom Menu widget.
Hope that makes sense.
do unterstand exactyl wy but it works, thx a lot
* The widget loads up a custom menu of your choice.
* The custom menu is managed from Appearance > Menus.
* The widget usually outputs a vertical list.
* With the CSS we’re saying, hey, if there is a custom menu widget in the footer then apply the following styles to that custom menu.
Hope that helps explain it a little. Glad it helped.