...
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.
Jacob Note for Boyne requirements
you can add a new div below
Code Block |
---|
<div class="aw-simple-footer aw-simple-footer--wrapper"> |
so something like
Code Block |
---|
<div class="aw-simple-footer aw-simple-footer--wrapper">
<!-- main footer content -->
</div>
<div id="boyne-amex-footer">
<img src="path/to/logo" />
</div> |
then inĀ widget for the footer styles add
Code Block |
---|
#boyne-amex-footer {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: (whatever height you need the footer to be);
} |