Submitted by melinda on Tue, 12/15/2015 - 15:15
If using rewrite as link as node/ [nid] you need to be sure that Node: Nid is added as a field. Set it to 'exclude' from display. Make sure that Node: Nid comes first in the fields section.
Submitted by melinda on Sun, 10/25/2015 - 13:47
For all who had issues getting the Drupal 7 Bootstrap theme radio buttons on the registration form to behave.
Code:
<div class="form-type-radio form-item-field-whatever">
<input type="radio" id="edit-field-whatever-field" name="field_whatever" value="no" class="form-radio" /> <label for="edit-field-whatever-field">No </label>
</div>
CSS:
#edit-field-whatever-field {
margin-left: 0;
}
CSS selector is the radio button's ID
Pages