Adding a slogan to the theme
This recipe details the steps involved in adding a slogan to the theme. Site slogans are a common feature on most sites and are typically witty or involve clever wordplay. They are synonymous with catchphrases, tag-lines, mottoes, and so on.
Drupal offers a global setting to store the site slogan which is customarily displayed by themes near the site logo or site name, and is also regularly added to news feeds and site e-mails as part of the site's identity.
Getting ready
Think up a good slogan! This is the biggest stumbling block to getting this recipe right.
How to do it...
Adding a slogan to a theme involves the following steps:
Navigate to
admin/settings/site-information
(Home | Administer | Site configuration | Site information).Locate the Slogan textfield and add the slogan here as shown in the following screenshot:
Click on the Save configuration button at the bottom of the page to save our changes.
Now, navigate to
admin/build/themes
(Home | Administer | Site building | Themes).Click on the Configure tab at the top of the page.
The resulting page should have multiple tabs: one titled Global settings which affects all themes and others representing each enabled theme. Configuration options under the Global settings tab serve as the site's default settings for all themes while equivalent settings within each theme's tab work as overrides for the global settings.
On the Global settings page, look for the Site slogan setting in the Toggle display section and ensure that it is checked.
Click on the Save configuration button to save our changes.
Tip
If any of the themes have overridden the global settings, then the Site slogan checkbox will also need to be checked in its respective theme tab.
How it works...
Drupal saves the provided slogan as a configuration setting in the database. The theme system makes this setting available as a variable to the theme which outputs it accordingly when the page is being rendered.
In the following screenshot, we can see that the slogan is enabled and is displayed below the logo and name of the site.
There's more...
Besides the site slogan, other site variables are also available on the theme configuration pages.
Similar settings
The Drupal Site information page seen in this recipe also contains fields for other settings such as the site name, mission, and footer which are also similarly exposed by themes.