Impulse Theme
Rich Text
I would like to control individual rich text components so will need code to use in the custom css are of the template builder.
I want to increase/decrease margins/padding for top and bottom?
Impulse Theme
Rich Text
I would like to control individual rich text components so will need code to use in the custom css are of the template builder.
I want to increase/decrease margins/padding for top and bottom?
Hello There,
Please share your store URL and screenshot.
So that I will check and let you know the exact solution here.
Hey @bonnielauren
Could you please provide your Store URL and, if applicable, the Password too? Your cooperation is greatly appreciated!
Best Regards,
Moeed
Password: aotwep323
Hi @bonnielauren ,
You can try this way:
Step 1:
Step 2: Find base.css, base.scss, theme.css, theme.scss files (depending on theme)
- Find the appropriate element selector to add css. If you donβt know selectors then you can learn more here https://www.w3schools.com/cssref/css_selectors.php . For example, here I found the βappear-delayβ selector and I will css it:
Add this code to the end of the *.css/scss file you just found:
.appear-delay{
margin-top: 10px;
margin-bottom: 10px;
Hope it helps @bonnielauren !