• 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: change width of after footer menu

change width of after footer menu 8 years 8 months ago #31924

I need to change the after footer width so that the menu doesn't go over two lines, it's on one line only. Can't figure out the css code. Can someone enlighten me please?

it's the menu at the bottom of each page at www.lillianfidler.com/healthyhomes
The administrator has disabled public write access.

change width of after footer menu 8 years 8 months ago #31934

  • cosmin.cristea
  • cosmin.cristea's Avatar
  • OFFLINE
  • Platinum Boarder
  • Posts: 756
  • Thank you received: 144
The After Footer Position is created using standard Bootstrap classes, to be more exact, it uses a span9 column and a span3 one.

You can either alter the source code of the position to make it larger (e.g. span10, span2), or override the CSS of those 2 classes.
.rstpl-after-footer-position > .row-fluid > .container > .span12 > span9{
  width: 82.906%;
}
 
.rstpl-after-footer-position > .row-fluid > .container > .span12 > span3{
  width: 14.5299%;
}

Note that this is an example and not a complete solution, it might need additional tweeking.
My help is not official customer support. To receive your support, submit a ticket by clicking here
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!