I would like the text to be aligned to the right, with regular text inside the <p>
element also aligned to the right.
After applying this CSS code, the regular text within the <p>
element starts writing from right-to-left.
Since I am using SquareSpace, I am unable to modify the DIVs or use the direction: rtl property.
.desc-wrapper strong
{
color: #000000 !important;
text-align: left!important;
font-size: 24px!important;
}
.desc-wrapper p {
color: #000000 !important;
text-align: right!important;
margin-top: -5.7%;
direction: ltr!important;
}