Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to align the icons to the right of the text with the icon list elementor module? [closed]

I would like to Align the icons to the right of the text with the module "icon list elementor", there is no option for this can be a css solution?

icon list

like image 318
5jv Avatar asked Sep 08 '25 11:09

5jv


1 Answers

You are correct, by saying that there is no option for that -

But in you module, you can achieve it by applying the following css.

selector .elementor-icon-list-item{
    display:flex;
}
selector .elementor-icon-list-icon{
    order:2;
}

This would make your list have the icon at the end, and you can then toy around with positioning.

like image 83
Stender Avatar answered Sep 10 '25 00:09

Stender