Hi @danezeq,
We cannot support RTL in the EAE-Timline widget yet. To remove arrows you can use this CSS. Put this in EAE-Timeline > Advanced Tab > Custom CSS.
.rtl selector .eae-layout-left .eae-tl-item-content::before{
left: 0px !important;
border-width: 0px !important;
}
In future we will add rtl support to the widget.
Thanks for you quick answer! 🙂
i can see that Custom css is not available since it not elementor pro. can i put this code via wordpress interface or somewhere else?
Hi @danezeq,
If elementor pro is not available. You can write the code in your child themes style.css file. Or you can use some custom CSS plugins like Simple CSS.
Simple CSS Plugin Link
Use this code :
.rtl .eae-layout-left .eae-tl-item-content::before{
left: 0px !important;
border-width: 0px !important;
}