Container border color only showing on mobile and NOT desktop also. Dawn v11.
Anyone know how to get the container border color to show on desktop too and only on the bottom of the container.
A user is experiencing an issue where container border colors display only on mobile devices, not on desktop, in Shopify’s Dawn theme version 11. The border also appears only at the bottom of the container.
Proposed Solution:
base.css file by locating the media query @media screen and (min-width: 750px)border-bottom to border-top in the .shopify-section stylingCurrent Status:
Container border color only showing on mobile and NOT desktop also. Dawn v11.
Anyone know how to get the container border color to show on desktop too and only on the bottom of the container.
Hello @daved1234
Thank you for reaching out to the Shopify community.
Here are the steps:
Navigate to the theme editor Online Store → Themes → Edit Code.
Search for the asset named as base.css, open the file and search for the below code:
Search
@media (max-width: 767px){
.shopify-section{
border-top: 3px solid #FB8507;
}
}
Replace with
@media screen and (min-width: 275px) {
.shopify-section{
border-bottom: 3px solid #FB8507;
}
}
Save the changes and please have a check once. Let me know if this was helpful.
Thanks.
Almost works! I can see a border now on desktop but I can’t get the color to change regardless of what color hex value I use??
Looks like you have currently removed the CSS and have added it just for the header. Let me know if you are still facing any issues.
Hello!
Thank you for your support.
I am still having the issue, even after inserting the code you suggested.
Any other ideas?