Looking for a little help. I am using the District theme for my store. The footer text in the blocks was defaulted to center which looked very bad to me. I found the code in theme.scss.liquid that controlled the alignment and set it from center to left which did what I wanted…
$footerFullWidth: false;
$footerBackgroundColor: {{ settings.footer_background_color }};
$footerTitleTextColor: {{ settings.footer_title_text_color }};
$footerNavTextColor: {{ settings.footer_title_accent_color }};
$footerTextColor: mix($footerTitleTextColor, $footerBackgroundColor, 80%);
$footerTextAlignment: left;
The only issue is it also moved my payment icons and copywrite text left too. Is there a way to justify the block text left but keep the payment icons and copywrite centered?