Hello
I want to display the Home Top menu same as the main menu, I mean colour and Horizontally.
Please advise
HI universityofmauritius
It seems that you show a menu module there. You can use this custom CSS to make it horizontally.
.t3-header .nav-stacked > li { float: left; margin-right: 20px; }
Hello can you please guide where to update the css.
Thank you.
universityofmauritius You can put into the file: /templates/ja_heathcare (your default template)/css/custom.css (create this file if it doesn't exist now)
This file will keep your custom css and it will not be lost when you update new version of template.
Thank you again It worked!
But how can we remove the line appearing on top of the menu please?
universityofmauritius
You can update above style to:
.t3-header .nav-stacked > li { float: left; margin-left: 50px; border-top: none; }
Thanks a lot
You're welcome!