Archived topic
Border Color Bug on Mobile
1 reply · Started by Christopher on August 3, 2021
My border around my images look good on desktop for my website wealthawesome.com, but on mobile there's a weird bug where it doesn't wrap around the image on the right side. See the image link here:
Any idea how to fix this? If there's no fix, what's the best way to disable the border on mobile only?
Hi there,
the Image Block you added is set to display the 300px wide image, so it doesn't fill the container.
You can either a) select a larger size image eg. medium large or b) add some CSS to force them to fill the container:
.gb-grid-wrapper .wp-block-image img {
width: 100%;
}