Add container around text and button

Hi guys,

Website: seraneeva.com

How can I add a semi transparent container around the text and button on this page https://seraneeva.com/products/portable-handheld-high-frequency-skin-therapy-wand-machine-for-acne-massage-skin-rejuvenation-tightening-wrinkle-reducing-tool.

Pic for reference:

Hi @flammagreg

Check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

.image-with-text-overlay__caption--align-desktop-center {
    position: relative; 
    background: rgba(255, 255, 255, 0.7); 
    padding: 20px; 
    z-index: 1; 
}
.image-with-text-overlay__caption--align-desktop-center:after {
    content: '';
    position: absolute; 
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7); 
    z-index: -1;
    pointer-events: none; 
}
a.btn {
    background: black !important;
}

And Save.

result:

This is Noah from PageFly - Shopify Page Builder App

Please add code here to fix it:

Step 1: Online Stores > Themes > Edit code

Step 2: Choose file theme.liquid
Step 3: Add code above the tag


Hope my solution will help you resolve the issue.

Best regards,

Noah | PageFly