• 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: Cascading check boxes

Cascading check boxes 2 years 3 months ago #41764

  • am2781
  • am2781's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
I have multiple check box groups on my form, but the check boxes do not align vertically, they cascade for some reason. Any idea why this is happening?
bcumc.iallc.io/membership-information


The administrator has disabled public write access.

Cascading check boxes 2 years 3 months ago #41765

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

This CSS rule:
.radio input[type="radio"], .checkbox input[type="checkbox"] {
    float: left;
    margin-left: -20px;
}

..is overriding the following:
.form-search input, .form-inline input, .form-horizontal input, .form-search textarea, .form-inline textarea, .form-horizontal textarea, .form-search select, .form-inline select, .form-horizontal select, .form-search .help-inline, .form-inline .help-inline, .form-horizontal .help-inline, .form-search .uneditable-input, .form-inline .uneditable-input, .form-horizontal .uneditable-input, .form-search .input-prepend, .form-inline .input-prepend, .form-horizontal .input-prepend, .form-search .input-append, .form-inline .input-append, .form-horizontal .input-append {
    display: inline-block;
    ....
}

Both are originating from your template styles (the first one is at line 913, the second one is at line 1524):

bcumc.iallc.io/media/gantry5/assets/css/bootstrap-gantry.css
The administrator has disabled public write access.
The following user(s) said Thank You: am2781
  • 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!