My footer is not working properly so I don’t know what to do any suggestions?
Topic summary
A store owner reports their footer is malfunctioning and shares a screenshot for reference.
Proposed Solutions:
- One user provides CSS code modifications targeting the
theme.cssfile around lines 15003-15004, focusing on mobile responsive styling (max-width: 767px) for footer items - However, this response contains garbled/reversed text that appears corrupted
Clarification Needed:
- Another participant asks what specifically is wrong with the footer
- The original poster clarifies the Instagram icon positioning is incorrect and should be moved down
Alternative Fix:
A detailed step-by-step solution is offered:
- Navigate to Online Store → Themes → Edit Code
- Open Assets/theme.css file
- Add specific CSS code to the end of the file targeting
.footer__item-listwith flexbox display properties for mobile screens
The discussion includes screenshots showing the code editor interface and specific CSS modifications needed. The issue appears to be a mobile responsive layout problem with footer elements.
Hi @Emiway ,
This can be solved, follow the steps
Go to Online Store > themes > edit Code
Search theme.css file
In that file around line 15003, 15004 there will be this code
media only screen and (max-width: 767px){
.footer__item.footer__item--text.is-first {
max-width: 100% !important;
}
.footer__item-list {
grid-template-columns: 1fr !important;
}
}
replace this with
media only screen and (max-width: 767px){
.footer__item.footer__item--text.is-first {
max-width: 100% !important;
}
{% comment %}
.footer__item-list {
grid-template-columns: 1fr !important;
}
{% endcomment %}
}
and you will be good to go
BR
Dawood Mirza
Not Working
That Instagram Icon Should Be Down



