Home › Forums › Builderio – Free Construction Theme › Text automatically indented › Reply To: Text automatically indented
November 8, 2018 at 4:15 am
#2635
Abileweb
Keymaster
Hi,
You don’t want text indent to content of pages means you need to write css code in style.css file.
find the code in style file and set text-indent to 0.
.type-page .entry-content p {
line-height: 1.8;
margin-bottom: 0;
text-indent: 45px;
}
or replace the code
.type-page .entry-content p {
line-height: 1.8;
margin-bottom: 0;
text-indent: 0px;
}
Thanks