Hi!
I am using the motion theme and the element ‘Large Image With Text Box’ has two dark lines in the paragraph section that I’m unable to get rid of. Not sure why it’s happening. I have not edited the theme files. I made some minor CSS edits to a different section.. Any ideas?
Hi @evanmcsweeney
Could you share your page link to check?
Hi Dan, here is the link to the staging site. Its the section towards the end of the page with a pink background. You will see the two black lines under the heading. Thanks!!
https://sianjacobs.com/?_ab=0&_fd=0&_sc=1
Hi @evanmcsweeney
You must get a preview link by clicking Share preview
Please add this code in Custom CSS of that section in your Online store > Themes > Customize
.animation-contents .background-media-text__text:after,
.animation-contents .background-media-text__text:before {
background-color: unset;
}
Thanks Dan! That worked! Another issue I am having is when I upload hero images to the header.. they are not full width (they are zoomed right in). Was hoping to get this same effect as seen on this site: https://shop.vogue.de/
But when I upload images that are the same dimensions onto my site, they auto zoom right in.. hmmm
You can try to add this code in Custom CSS of that hero image section to check if it ok
.parallax-container { height: 100%; }
.parallax-image img { object-fit: contain; }