How can I format RTE in Studio Theme to 4 lines?

Hello @GeeKyuu24

Replace the following html in place of h3 tag


- ✔ SNABB LEVERANS

- ✔ FRIFRAKT ÖVER 399 KR

- ✔ 14 DAGARS RETURRÄTT

- ✔ VEGANSKT

Add this css in your css file.

@media screen and (min-width: 990px){
.section-template--19902269161797__7479caf5-2ffc-40c2-8db6-18dd2c11459a-padding .rich-text__blocks.center{
     max-width: 100% !important;
}
}

.section-template--19902269161797__7479caf5-2ffc-40c2-8db6-18dd2c11459a-padding .rich-text__text ul{
	list-style: none;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

Output:

Thanks.