...
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
.
...
Code Block |
---|
<style> .aw-simple-footer{ width: 100%; font-family: var(--ads-brand-primary-fontfamily, sans-serif); font-weight: normal; } .aw-simple-footer--wrapper{ width: 100%; background-color: var(--ads-plugins-simplefooter-backgroundcolor, #222); padding: 15px; } .aw-simple-footer--row{ display: flex; flex-direction: row; flex-wrap: nowrapwrap; justify-content: space-between; align-content: stretch; align-items: flex-start; } .aw-simple-footer--column{ flex: 1 1 auto; padding: 15px; align-self: stretch; } .aw-simple-footer--column-content{ display:flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; height:100%; } .aw-simple-footer--column-content > .contact, .aw-simple-footer--column-content > .label, .aw-simple-footer p, .aw-simple-footer a{ font-size: var(--adx-font-size-16, 1rem); line-height: var(--adx-line-height-19, 1.1875rem); color: var(--ads-plugins-simplefooter-textcolor, #fff); display: block; padding-bottom:5px; text-decoration: none; } .aw-simple-footer--column-content > .label{ font-size: .9rem; opacity:.7; } .aw-simple-footer--column-content.logo{ flex-direction: row; align-items: flex-end; } .aw-simple-footer h2{ font-size: var(--adx-font-size-19, 1.2rem); height:20px; color: var(--ads-plugins-simplefooter-textcolor, #fff); } .aw-simple-footer--logo{ background-image: var(--ads-header-logo-image); background-size: contain; background-repeat: no-repeat; height: 60px; width: var(--ads-header-logo-width, 100px); font-size: 0 !important; display: block; position: relative; margin-right:30px; } @media screen and (max-width: 990px) { .aw-simple-footer--row{ display: flex; flex-direction: column; justify-content: center; align-content: center; align-items: center; width:100%; } .aw-simple-footer--column{ flex: 1 1 auto; padding: 15px 0 0 0; align-self: auto; width:100%; } .aw-simple-footer--column-content{ align-items: center; justify-content: center; } .aw-simple-footer--logo{ margin-right:0; } } </style> |
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.
...