Hey there eurovita,
This can be done by adding some custom CSS. The easiest way to do that, if your theme doesn’t already have custom CSS tab, would be to add it in your site using the following plugin
http://wordpress.org/plugins/simple-custom-css
Once the plugin is installed and activated you can add this code to Appearance >> Custom CSS:
#menu ul li {
display: inline-block;
}
This should display your menu items vertically.
Hope this helps.
Best regards,
Bojan
Hi Eurovita
To display items horizontally you will need to add some custom css code to your theme in some way.
If the theme allows customization of css then all well and good. If not you will need to create a child theme or any customizations will be lost when the theme is updated.
It looks to me that the code you need to add is the following:
ul#main-menu li {
display: inline;
}
Hope this helps
Dave
Thank you so much! It helped, now I have normal menu π