I’ve seen CSS to flip the whole page left to right. I just want the title component to be flipped right to left.
The property to use is text-align:right
.
Okay thanks, are you able to type exactly what i need to put in the CSS.
I don’t understand CCS, i just copy and paste, and sometimes Chat GPT gives variations that work🙈
I assume you want something like this.
.adjusted-title .single-column,
.adjusted-title div[class*="wire-hero-lib___StyledDiv"] {
flex-direction: row-reverse;
}
.adjusted-title div[class*="wire-hero-lib___StyledDiv"] {
text-align: right;
}
2 Likes
Yes, exactly. Will test that out, thanks👍
1 Like