@MS-Ecom2024 so my first reply was 50% right or 50% wrong? ![]()
for mobile, you’ll have to use the following code:
@media screen and (max-width: 740px){
.faq__item {
border: 1px solid #000!important;
margin-bottom: 5px;
}
}
A user seeks help adding borders/frames around individual questions in a Q&A section on the Focal Shopify theme.
Initial Solution:
.collapsible-toggle with a 1px solid black border and 5px bottom marginMobile Issue & Fix:
.faq__item with !important flag to ensure proper renderingResolution:
@MS-Ecom2024 so my first reply was 50% right or 50% wrong? ![]()
for mobile, you’ll have to use the following code:
@media screen and (max-width: 740px){
.faq__item {
border: 1px solid #000!important;
margin-bottom: 5px;
}
}