How can I adapt my custom content (trust badges in this case) to appear vertical on mobile view instead of horizontal? When they appear horizontally on mobile view they are too small and it looks unprofessional.
I am using the Brooklyn theme.
If anyone knows how to fix this I would greatly appreciate their help
Thank you for the suggestion, I really appreciate it. I will make another vertical image and upload it to mobile view. I’m sorry to ask an easy question, but how do I edit only the mobile version. How would I upload the vertical picture on the mobile version while retaining the horizontal image on desktop view?
Below that image creates a new image tag and give the name “mobile_badge” and hide that image for desktop and make it visible for mobile. don’t forget upload vertical image
.mobile_badge {
display:none;
}
@media screen and (min-width:240px) and (max-width:767px) {
.mobile_badge {
display:block;
}
.Worldwide_Shipping_5 {
display:none;
}
}
Thank you for the advice. I must admit I’m a complete novice with coding. I made a complete mess when I tried to follow your instructions. Is there anyway you can fix my mess? or simplify the instructions for a complete beginner?