We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Raster around text field

Raster around text field

lunalucenteskin
Explorer
88 0 19

Hi everyone,

 

Below the atc button we use a white field but we want it to have a very small raster in the color of the package around the white field. How can we do this?

 

URL is www.lunalucente.com

 

Kind regards!

Image 08-07-2024 at 20.53.jpeg

Replies 4 (4)

Tal19
Shopify Partner
144 27 29

Online store -> edit code of your theme

Search product.css

and then add this code:

.m-product-description.rte {
    padding-top: 5px !important;
}
Need Shopify Development, Customization, or POS Support? PM Me!

Made4uo-Ribe
Shopify Partner
10211 2427 3080

Hi @lunalucenteskin 

Check this one.

  1. From you Admin page, go to Online Store > Themes
  1. Select the theme you want to edit
  2. Under the Asset folder, open the main.css(base.css, style.css or theme.css)
  3. Then place the code below at the very bottom of the file.

 

.main-product__block.main-product__block-description {
    margin-top: 12px;
}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1720470108153.png

     

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
lunalucenteskin
Explorer
88 0 19

Hi,

 

What i meant more was making a raster around the white text field in a customizable color.

 

Tal19
Shopify Partner
144 27 29

try the following code:

.m-product-description.rte {
    box-shadow: 0 1px 2px 0 rgba(58, 72, 80, .07), 0 6px 13px 0 rgba(176, 189, 197, .14);
}
Need Shopify Development, Customization, or POS Support? PM Me!