如何使用图标列表元素或模块将图标对齐到文本的右侧?

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

我想使用模块“icon list elementor”将图标与文本右侧对齐,没有选项可以作为css解决方案吗?

icon list

你是对的,说没有选择 -

但是在您的模块中,您可以通过应用以下内容来实现它 css。

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

这将使您的列表在末尾有图标,然后您可以调整定位。