Why is my website's footer copyright text appearing in white color?

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

1 Like

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 -%}
1 Like

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.

1 Like

if you can screenshot your footer.liquid section and post here i’ll take a look

1 Like

{%- 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 menu_enabled or section.settings.show_newsletter %}
{% for block in section.blocks %}
{% case block.type %} {% when 'menu' %} {%- assign link_list = block.settings.link_list -%} {% endcase %}
{% endfor %}

{% if section.settings.show_newsletter %}

{% form 'customer' %} {{ section.settings.newsletter_heading }}
{{ section.settings.newsletter_subheading }}
{{ 'general.newsletter_form.submit' | t }} {% include 'icon-arrow-right' %}
{% if form.posted_successfully? %}

{{ 'general.newsletter_form.confirmation' | t }}

{% endif %} {{ form.errors | default_errors }}
{% endform %}
{% endif %}
{% endif %}
{% if section.settings.show_social_icons %}
{% include 'social-links', disableTab: true, largeIcons: true %}
{% endif %}
{{ 'layout.footer.copyright' | t }} © {{ 'now' | date: '%Y' }}, {{ shop.name | link_to: routes.root_url }}. {{ powered_by_link }}

{%- if section.settings.show_payment_icons -%}

{%- unless shop.enabled_payment_types == empty -%} {{ 'general.payment.method' | t }}
    {%- for type in shop.enabled_payment_types -%}
  • {{ type | payment_type_svg_tag: class: 'icon icon--full-color' }}
  • {%- endfor -%}
{%- endunless -%}
{%- endif -%}

{% if section.settings.enable_parallax %}

{% endif %}

{% schema %}

1 Like

in the layout sectoin, edit layout.copyright.liquid.

i think its in there

1 Like

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