(URGANT PLEASE HELP) On desktop i have a small image next to my newsletter box which i want to keep. However i want to remove it on mobile version because it dosent fit nicely. How do i do this? Please help me i have been trying to remove it on mobile for a long time.
The right way to do this would be to add media queries for that.
@media only screen and (max-width: 767px){
...
}
The example below shows a media query wrapping the style. Now you could also just add this code as is and paste to the very bottom of your css file. It would work - just adds more lines of code.
@media only screen and (max-width: 767px){
.footer__newsletter .newsletter-form__field-wrapper:after{
display:none
}
}
Depending on what you consider mobile you may want to adjust that 767px value.
If you have a high user base of mobile users you may want to rethink hiding it and adjusting the layout so it fits in some way. I’m assuming you’ve added it to help that signup conversion.
Hi thanks for the help! In that case im thinking of moving the mobile position similarly to where the red arrow is pointing to in this photo. Please could you help me do that? It would be highly appreciated
This is Richard from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/section-footer.css->paste below code at the bottom of the file: