Checkboxes

Admissions Theme Checkboxes Example

To create checkboxes in the Admissions Theme such as the ones shown above, follow these directions:

  1. Go to the page where you want to add the checkboxes.
    1. Click on the Edit button (located under “Open Utilities” in view mode).
    2. Scroll to the BP Paragraphs and select Add Paragraph.

      Drupal BP Paragraphs Button
    3. The Add Paragraph window will open.
    4. Select Blank WYSIWYG from the list.
    5. In the Blank WYSIWYG, choose Full HTML.

      Drupal Blank WYSIWYG Full HTML Screen
    6. Create an unordered list of items (bullet points).
    7. In the Styles dropdown menu, choose “Block Grid.” There are multiple types to choose from.

      Drupal Styles Dropdown
    8. For light checkboxes, click on the Source tab and paste the following code: <ul class="large-block-grid-2 medium-block-grid-2 small-block-grid-1 right-aligned-check check-light">
    9. For dark checkboxes, click on the Source tab and paste the following code: <ul class="large-block-grid-2 medium-block-grid-2 small-block-grid-1 right-aligned-check check-dark">
    10. Then, add the following style HTML code within the editor, above or beneath the content: 

<style>

.right-aligned-check li::before {

width: 32px;

   display: inline-block;

   float: left;

   margin-right: 1.25rem;

   margin-top: 8px;

}

.check-dark li::before {

content: url(https://www-s3-live.kent.edu/s3fs-root/s3fs-public/Icon_Checkmark%20sma…);

}

.check-light li::before {

content: url(https://www-s3-live.kent.edu/s3fs-root/s3fs-public/Icon_Checkmark%20sma…);

}

</style>

Admissions Theme Checkboxes HTML Screen