Table of Contents | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Intro
This document provides the instructions for adding Simple Footer to a resort that is using Theme Designer version 2. Simple Footer v2 uses the flexbox model for responsive layouts.
...
Instructions
Create a NOP Widget and add the following HTML and name it
Simple Footer
.
...
Save the widget and Assign it to the
body_start_html_tag_after
widget zone.Clear the Site cache
The Footer should now be showing on the site
Update the background color. The background color is controlled in Theme Designer under
Plugins > Simple Footer > Background Color
Update the text color if needed: The text color is controlled in Theme Designer under
Plugins > Simple Footer > Text Color
The footer logo will use whatever logo you set for the header under
Header > Logo > Logo Image
The footer logo width will match whatever you set in
Header > Logo > Width
The fonts will inherit from the Brand Primary Font automatically.
Adding/Removing Columns
You can add or remove aw-simple-footer--column
Columns as needed and the CSS will maintain the proper layout. The content must be wrapped in the aw-simple-footer--column-content
container to maintain the correct content layout as follows:
Code Block |
---|
<div class="aw-simple-footer--column">
<div class="aw-simple-footer--column-content">
<h2>
CONTACT US
</h2>
<span class="label">Passes</span>
<span class="contact"><a href="tel:123-456-7890">123-456-7890</a></span>
</div>
</div> |
If the column contains a logo, you must add the logo
class to the aw-simple-footer--column-content
wrapper, ie <div class="aw-simple-footer--column-content logo">
. This ensures the Logo remains properly positioned in the column.