Hiding LibGuides items, such as images or content boxes, from the mobile view requires the addition of the Bootstrap class element class="hidden-xs" within the item’s <div> tag.
In this example, the template will now hide this content box — a book gallery on the New Books guide— from mobile devices.
<div class="hidden-xs">
{{content_box_29446099}}
</div>
** See the Responsive Utilities section of this Bootstrap overview to see more visibility options for different screen sizes. **
LibGuides allows for the use of hundreds of free icons from Font Awesome. They can be customized (size and color and placement) and used throughout our guides.
Here’s a link to an overview on the Springshare site: https://buzz.springshare.com/videohighlights/techtip/fontawesome
Font Awesome Icon List:
Icon list: https://fontawesome.com/v4/icons/
<i aria-hidden="true" class="fa icon-name" style="font-size: insert-size; color: insert-hex-color; padding: insert-padding;"></i>
** FYI: aria-hidden="true" at the beginning of the code hides the icon from screen readers for accessibility purposes.**
Font Awesome’s “university” icon, 12 px, using OCC’s official green color.
HTML: <i aria-hidden="true" class="fa fa-university" style="font-size:12px; color: #046A38;"></i>

NOTE: Font Awesome also includes options for embedding icons in text (see example 2 below), creating “pull-quote” style icons, and animating icons.
Code for these options can be found here: https://fontawesome.com/v4/examples/
Font Awesome’s “ID Card” icon, 3X its original size, embedded into the top left corner of text, using OCC’s official green color.
HTML: <i aria-hidden="true" class="fa fa-id-card-o fa-3x fa-pull-left" style="color: #046A38;"></i>

