How To Fix Elementor Font Size Not Changing

You are trying to change the font size by using the live Elementor editor in style tab.
Sometimes, this issue is caused by theme style priority.
In this case, you just need to add this CSS to fix the live font size changing issue.


.elementor-element p {
font-size: inherit;
line-height: inherit;
margin-bottom: 0;
}

I hope this will help 🙂

0 Points