Saturday, May 10, 2025 Theme Features 324
Particles are incredibly simple building blocks that Gantry 5 themes thrive on. They are easy to set up, require no coding experience to configure, and are built on an intuitive and human-readable Twig and YAML file structure that makes developing them a breeze. You can use particles to set up your logo, display content in a way that complements the theme design, and more.
Saturday, May 10, 2025 Uncategorised 249
There may be occasions when you will make your website completely unavailable to visitors for a short time. There is a simple switch in the Gantry 5 platform settings that enables you to take your website offline very quickly. It can be returned to service at a later time just as easily.

Helium comes with a robust set of typography options that you can use to bring your content to life. In this page, we will list and give examples of the many typography options you can use.

Variations

Variations are classes that can be applied inline, as well as put to use in some particles through **Variations** or applied directly to content as CSS classes.

Buttons

Buttons have a number of great variations to choose from. You should note that in the HTML breakdown we have added a button class in addition to the variation, which is a requirement for these particular variations to work. You can also combine these variations.

Default Button   Button Bevel   Button Square

<a href="#" class="button">Default Button</a>
<a href="#" class="button button-bevel">Button Bevel</a>
<a href="#" class="button button-square">Button Square</a>

Button 2

<a href="#" class="button button-2">Button 2</a>

Button Outline

<a href="#" class="button button-outline">Button Outline</a>

Button Gradient

<a href="#" class="button button-gradient">Button Gradient</a>

Button Block

<a href="#" class="button button-block">Button Block</a>

Button XLarge

<a href="#" class="button button-xlarge">Button XLarge</a>

Button Large

<a href="#" class="button button-large">Button Large</a>

Button Small

<a href="#" class="button button-small">Button Small</a>

Button XSmall

<a href="#" class="button button-xsmall">Button XSmall</a>

Headings

All HTML headings, <h1> through <h6> are available.

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Notice Styles

Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

<p class="alert alert-success">…</p>

Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

<p class="alert alert-info">…</p>

Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

<p class="alert alert-warning">…</p>

Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

<p class="alert alert-error">…</p>

Blockquotes

For quoting blocks of content from another source within your document.

Default blockquote

Wrap <blockquote> around any HTML as the quote. For straight quotes we recommend a <p>.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

<blockquote>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
</blockquote>

Blockquote options

Style and content changes for simple variations on a standard blockquote.

Naming a source

Add <small> tag for identifying the source. Wrap the name of the source work in <cite>.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

Someone famous in Source Title
<blockquote><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p><small>Someone famous <cite title="Source Title">Source Title</cite></small></blockquote>

Code

Inline

Wrap inline snippets of code with <code>.

For example, <section> should be wrapped as inline.
For example, <code><section></code> should be wrapped as inline.

Note: Be sure to keep code within <pre> tags as close to the left as possible; it will render all tabs.

 

Basic block

Use <pre> for multiple lines of code. Be sure to escape any angle brackets in the code for proper rendering.

<p>Sample text here…</p>
<pre>&lt;p&gt;Sample text here…&lt;/p&gt;</pre>

Tables

# First Name Last Name Username
1 John Doe JohnDoe
2 Jane Doe JaneDoe
3 Bob Doe BobDoe
<table class="table">…</table>