Archived topic
How do move the TXT in a list (ul) to the left?
1 reply · Started by Robert on August 26, 2022
Hi
I just wanna ask how to add a CSS code into my page that will move the TXT in a list
- ...
to the left?
Now are the small points on the left, but the TXT's are in the center:
https://snipboard.io/XOyfHQ.jpg
Thx
Robert
Hi there,
thats something you probably want to ask Elementor, as they may have some controls for the icon box that stop the text-align center from affecting the list.
But if they can't help, try adding this CSS:
.elementor-widget-icon-box .elementor-icon-box-wrapper ul {
text-align: left;
}
Or this if you want to kept the list centered with the bullet aside of it:
.elementor-widget-icon-box .elementor-icon-box-wrapper ul {
text-align: left;
display: inline-block;
margin-left: auto;
}