HEY
I want to move the heading text to the middle of the home page and make it transparent to see the image, can you help me, please?
thank you
HEY
I want to move the heading text to the middle of the home page and make it transparent to see the image, can you help me, please?
thank you
Hi Irfane,
Are you able to give a little more detail on your problem? Do you mean that you’re looking to make the text transparent or the image transparent? Is your site publicly available to view? Or do you have access to some of the code that you can provide so that I can provide a solution?
Hi @irfane ,
Can you kindly share your store link (with the password, if any) with us? We will check it and suggest you a solution if possible.
hello
I want to move the text in the middle of the image an make the text background transparent to be able to see the image
the link is:https://gearndwear.myshopify.com/
thank you
Okay, I’ve had a quick look and this shouldn’t be a difficult fix.
You could try the below. However, this may affect other elements.
.banner__content.banner__content--bottom-center {
align-items: center;
justify-content: center;
opacity: 0.4; // you can make this whatever you like.
}
}
.slideshow__text.banner__box {
background: transparent;
}
I would be inclined to search your editor code for the banner.css (not 100% sure what this would be called) and look for these classes (e.g., banner__content) and overwrite the particular property that disagrees with the above code. Make sure you don’t remove anything that is already there, and take a backup if you’re not feeling confident.
I hope that helps point you in the right direction.
hey, thank you for the answer but I am afraid to tell you that the solution you gave didn’t fix my problem and adjust the text position,but it made it transparent hope you understand, thank you again
I’m sorry to hear that Irfane. That seems to be the fix in my browser. Depending on where you placed the code it may be being overwritten.
Drop me a message if you’d like me to have a look at your code, for this I would need a collaborator code.
Insert this CSS snippet into your CSS file:
.slideshow__text-wrapper.banner__content.banner__content--bottom-center.page-width {
align-items: center !important;
}
.slideshow__text.banner__box {
background: transparent !important;
}
Result:
**Hope it works @irfane **