A GREAT theme - thanks for contributing it.

The check boxes and Option groups wrap. I have attached screen captures of each.

Perhaps there is a line of I can add to the CSS to fix this.

Thanks for your help.

Neil

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

skech’s picture

Hi Neil, you can add the following two lines to simplecorp/css/main-css.css file.

at line 1284

input[type="checkbox"], input[type="radio"] { margin: -3px 9px 0 0; }
.form-type-checkbox label, .form-type-radio label { display: inline-block; }

Thanks
Soukri

nfriend’s picture

FileSize
8.21 KB

Thanks for the reply however this did not work.

Not sure if it makes a difference but I am using a Views block with a filter option. This is where the chkboxes are wrapping.

Image attached.

Thanks

Neil

nfriend’s picture

Any chance we could get some additional feedback on this?

Thanks

Neil

lucastockmann’s picture

That worked for me:

.form-item label {
  display: inline;
}

.form-item input[type="checkbox"], .form-item input[type="radio"] {
  display: inline;
}
revagomes’s picture

Status: Active » Needs review
FileSize
31.81 KB

Here goes a patch that fix this issue. I corrected line ending issues too.

cjones12365987544’s picture

Issue summary: View changes

Thank you patch works great!