NEED HELP
Please change the newsletter section to 100% width on mobile view
Shop Link: https://93f811-2.myshopify.com/
NEED HELP
Please change the newsletter section to 100% width on mobile view
Shop Link: https://93f811-2.myshopify.com/
Hi @admintb
Check this one.
From your Shopify admin dashboard, click on âOnline Storeâ and then âThemesâ.
Find the theme that you want to edit and click on âActionsâ and then âEdit codeâ.
In the âAssetsâ folder, click on âbase.css, style.css or theme.cssâ file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media screen and (max-width: 700px){
.footer__block-list {
display: grid;
grid-template-columns: 1fr;
}
}
And ZSave.
Result:
Please donât forget to Like and Mark Solution to the post that helped you. Thanks!
@Made4uo-Ribe Can you make the border in black? #000000
Yes, We can. The code is already over ride what you can do is to find this code in the theme.liquid file.
And change or delete the rgb(var(âborder-color))
into black
And Save.
Please donât forget to Like and Mark Solution to the post that helped you. Thanks!
@Made4uo-Ribe Canât find the code
Its in the theme.liquid inside the
The code you have is already over ride. So it would be hard to over ride it again,.
@Made4uo-Ribe But where can I change my border color in general?
The general codes are in the theme.liquid.
You need to read the code in the theme.liquid code click ctrl+f then type the code youll like to see.
@Made4uo-Ribe This is my code:
{% if page_title == blank %}{{ shop.name }}{% else %}{{ page_title }}{% if current_page != 1 %} â {{ 'general.page' | t: page: current_page }}{% endif %}{% endif %}{%- if page_description -%}
{%- endif -%}
{%- if settings.favicon -%}
{%- endif -%}{%- comment -%}Few prefetch to increase performance on commonly used third-parties{%- endcomment -%}
{%- unless settings.heading_font.system? -%}
{%- endunless -%}{%- unless settings.text_font.system? -%}
{%- endunless -%}{%- render âsocial-meta-tagsâ -%}
{%- render âmicrodata-schemaâ -%}
{%- render âcss-variablesâ -%}
{%- render âjs-variablesâ -%}
{%- if request.page_type == âgift_cardâ -%}
{%- endif -%}
{{ content_for_header }}
{{- âtheme.cssâ | asset_url | stylesheet_tag: preload: true -}}
{% liquid
assign features_class = ââ
if settings.show_button_transition
assign features_class = features_class | append: 'featuresâbutton-transition â
endif
if settings.show_image_zoom_on_hover
assign features_class = features_class | append: 'featuresâzoom-image â
endif
if settings.show_page_transition
assign features_class = features_class | append: 'featuresâpage-transition â
endif
%}
{{ âgeneral.accessibility.skip_to_contentâ | t }}
{%- if request.page_type != âpasswordâ -%}
{%- sections âheader-groupâ -%}
{%- sections âoverlay-groupâ -%}
{%- endif -%}
{%- comment -%}
IMPLEMENTATION NOTE: For best semantics, having the footer group outside the main would be slightly better, but
moving it inside the main allows to have all the sections (including sections inside the footer group) to be
consecutive, and hence having a cleaner margin collapsing management.
{%- endcomment -%}
{%- if request.page_type != âpasswordâ -%}
{%- sections âfooter-groupâ -%}
{%- endif -%}