• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Display links horizontally in a menu

Display links horizontally in a menu 5 years 4 months ago #38627

  • contact827
  • contact827's Avatar
  • OFFLINE
  • Senior Boarder
  • Posts: 56
  • Thank you received: 3
Hello
How to display the menu links aligned horizontally in a menu module placed in a footer position (or anywhere) ? Template RSTrone.

I tried nav-pills in Menu class suffix (with a space before), but it doesn't work.
The administrator has disabled public write access.

Display links horizontally in a menu 3 years 9 months ago #40291

  • dragos
  • dragos's Avatar
  • NOW ONLINE
  • Administrator
  • Posts: 557
  • Thank you received: 102
Hello,

Instead of using the Bootstrap 'nav-pills' class, you can try a custom approach. For example, assuming that you've placed your Menu module within the Footer positions, you can use something similar within a custom.css file which you can create as explained here:
.rstpl-after-footer-position .rstpl-template-menu > li {
    display: inline-block;
}
 
.rstpl-after-footer-position .rstpl-template-menu > li > a{
    color: #f6b4b4;
    display: block;
    font-weight: 600;
    padding: 5px 10px;
    -webkit-transition: all .2s linear 0s;
    -moz-transition: all .2s linear 0s;
    -o-transition: all .2s linear 0s;
    transition: all .2s linear 0s;
}
The administrator has disabled public write access.
The following user(s) said Thank You: jeoffbeckers

Display links horizontally in a menu 3 years 8 months ago #40328

Just wanted to say thanks to Dragos for posting this just-in-time solution. I tried it today and it works perfectly!
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!