Hi
I dont know why but my website is showing the words 'Copyright 2022’ in white color and not in the footer color
Attaching the link of my website
https://shop.alayathestorehouse.com/
Thank you
Hi
I dont know why but my website is showing the words 'Copyright 2022’ in white color and not in the footer color
Attaching the link of my website
https://shop.alayathestorehouse.com/
Thank you
The reason you can see your name and shopify is that they are active links. Probably can go into the footer.liquid file under sections and add a text color right before the Copyright text. see below:
{%- if section.settings.show_copyright -%}
© {{ 'now' | date: '%Y' }} {{ shop.name }} {%- if section.settings.copyright_text != blank -%} {{ section.settings.copyright_text; color: #FFFFFFF; }} {%- endif -%}
{%- endif -%}Hi
Thank you for your response.
Can you please tell me how to add the color.
I cannot seem to find this code in my footer.liquid section.
if you can screenshot your footer.liquid section and post here i’ll take a look
{%- assign social_icons = false -%}
{%- assign menu_enabled = false -%}
{% if
settings.social_twitter_link != blank
or settings.social_facebook_link != blank
or settings.social_pinterest_link != blank
or settings.social_instagram_link != blank
or settings.social_tumblr_link != blank
or settings.social_snapchat_link != blank
or settings.social_youtube_link != blank
or settings.social_vimeo_link != blank
or request.page_type == ‘article’
or request.page_type == ‘blog’
%}
{%- assign social_icons = true -%}
{% endif %}
{%- for block in section.blocks -%}
{%- if block.type == ‘menu’ -%}
{%- assign menu_enabled = true -%}
{%- endif -%}
{%- endfor -%}
{% if section.settings.show_newsletter %}
{{ 'general.newsletter_form.confirmation' | t }}
{% endif %} {{ form.errors | default_errors }}{%- if section.settings.show_payment_icons -%}
{% if section.settings.enable_parallax %}
{% endif %}{% schema %}
in the layout sectoin, edit layout.copyright.liquid.
i think its in there
Hi
I can only find the copyright code in the theme file
}
.site-footer__copyright {
small {
font-size: em($font-size-base - 3);
@include media-query($small) {
display: block;
}
}
}
try this
}
.site-footer__copyright {
small {
font-size: em($font-size-base - 3);
@include media-query($small) {
display: block;
color: #FFFFFF;
}
}
}
I am still unable to change the color of the copyright color to black if I use this code.
.site-footer__copyright {
small {
font-size: em($font-size-base - 3);
@include media-query($small) {
display: block;
color: #000000;
}
}
}
https://shop.alayathestorehouse.com/pages/how-to-exchange-return
See the Footer. The copyright text is still white