How to write text over image in collection?

Does anyone know how to write the text box and button in the middle of the image ? and lower opacity? (this is collection image)

I want to have text “Summer” and “coming soon” on the image like below

thank you!!

@Eileen12 - can you share your collection page? it might work with css settings

Do you mean this link?

https://paw-pparel.com/collections/summer-collection

@Eileen12 - can you please share password to view file?

sure

pw is harubori

@Eileen12 - one mroe thing, you have that pop up box for offers, please remove it, it does not allow user to close it and user will just go away from the site

Sure i will remove it now

@Eileen12 - please add this css to the very end of your base.css file and check

.card {position: relative; margin-bottom: 20px;}

.card--standard>.card__content {
    position: absolute;    top: 50%;
    bottom: 0;    left: 0;    right: 0;
}

how do you reduce opacity?

And I wanted for collection not three items above

@Eileen12 - for opacity, add opacity property to css, so all code becomes like below, and if you want this for collection page only then will need to edit your code as your theme do not have any specific unique class or id for page and elements

.card--standard>.card__content {
    position: absolute;
    top: 50%;    bottom: 0;    left: 0;
    right: 0;    opacity: 0.4;
}