Hi, On my homepage section I want to add buttons to my collection images rather than the standard text below the image. Additionally, I would like for the button to be semi-transparent so the full product may be viewed. Can this be done?
Warmly,
Thank you
KawaiiForUs.com
Hello @KawaiiForUs ,
Go to Online store >> Edit code >> Assets >> base.css
Add this code below of base.css file.
.collection-card-wrapper .card{
position: relative;
}
.collection-card-wrapper .card__content {
position: absolute;
top: 42%;
}
.collection-card-wrapper .card__heading {
text-align: center;
background-color: rgb(253 247 247 / 50%);
max-width: 309px;
font-size: 22px;
font-weight: bold;
margin: auto;
padding: 10px 15px;
}
1 Like
Hi @KawaiiForUs .
I’m Richard Nguyen from PageFly- Free Landing Page Builder
You can go to Online store => themes => actions => edit code and add this code on file base.css
.collection-card-wrapper .card__content{
position: absolute !important;
top: 40% !important;
}
.card__heading {
text-align: center;
background: beige;
width: 350px;
}
.card__information{
display: flex;
justify-content: center;
}
Hope this answer helps.
Best regards,
Richard | PageFly
1 Like
This is perfect! Thank you very much!!!
1 Like
Hi @KawaiiForUs ,
You’re most welcome! 
I’m really glad to hear that.
Hello @KawaiiForUs ,
This issue can be fixed with the help of a custom code. You can add the below code at the end of your theme.css file and check if this resolves your issue.
Find the code below.
.collection-list-wrapper .card__content {
position: absolute;
top: 38%;
}
.collection-list-wrapper .card–media{
position: relative;
}
.collection-list-wrapper .card__heading {
text-align: center;
background-color: #e7dfdf42;
max-width: 309px;
font-size: 22px;
margin: auto;
padding: 10px 15px;
}
Hope this helps, let us know if you need any further assistance.
All the best,
CedCommerce