Hello everyone,
Can someone please send me the code to make the text in the red rectangle “Helvetic Neue Bold” 16px.
This section is an image with text section.
I have attached a screen shot of what text I would like changed.
url: https://kitzz3f1erohb1tc-54993551588.shopifypreview.com
Thank you.
1 Like
@Timstar
sorry for any issue can you try this code.
- Go to Online Store->Theme->Edit code
- Asset->/theme.scss.liquid->paste below code at the bottom of the file.
@media only screen and (max-width: 749px) {
#shopify-section-1644120866612d0b09 .rte-setting {
font-family: 'Helvetica-Neue-Bold';
font-size: 16px;
}
}
the text does not seem to be black. It’s a dark grey. How do I make sure its black please?
@Timstar
yes, please add this code
@media only screen and (max-width: 749px) {
#shopify-section-1644120866612d0b09 .rte-setting p {
color: #000;
}
}
1 Like