Avatar tnet asked

Horizontal Menu

I would like to put submenu's in top-a, similar to what you've done on the yootheme site. I tried to put one there and it came out vertical. Is there a style suffix that I can use to make it horizontal or can you give me any quick tips on how to accomplish this?

Thanks

  • Joomla
  • Warp Theme
  • Inspire

2 Answers

0

Avatar machine answered

Add this to your custom.css

ul.menufooter li {
display: inline; /* Shows each item side-by-side /
list-style-type: none; /
Gets rid of the bullet points */

}
.menufooter a {

display: block;  
font-size: 12px;  
font-weight: bold;  
color: #f4f4f4;  
float: left;  
padding: 0 1em; /* Provides horizontal separation between menu items */  

}

.menufooter a:hover {
color: #eece16;
}

name your menu module suffix "footer". Pull the module with a HTML module, with code {loadposition position-100}
Position-100 is the position of your footer module (call it position-100).

Edited

0

Avatar steven.harnie answered

I have the same problem on my website and this solution can probably help me too.
Link : http://www.printrix.eu/index.php/en/about/sales-conditions.html
But I don't understand what you mean with :

name your menu module suffix "footer". Pull the module with a HTML module, with code {loadposition position-100} Position-100 is the position of your footer module (call it position-100).

Can you explain a bit more about this?

Thanks

Edited

Know someone who can answer? Share a link to this question via email or twitter.