How to solve content is not aligned to left or center in WordPress Blog or post

Опубликовано: 26 Март 2026
на канале: DevEnum
454
2

How to solve content is not aligned to left or center in WordPress Blog or post
#wordpress #wordpresstutorial #wordpressdesign #wordpresstutorial

For more interesting content related to technology follow Our website
https://devenum.com
In this video we are going to learn how to solve the problem content is not aligned left or center in WordPress by using simple steps
#Wordpress align problem
#how to align text in WordPress
#How do I align text to the left in WordPress?
.entry-content li {
text-align: left;
}
.entry-content p {
text-align: left;
}
h3 {
text-align: left;
}
h4 {
text-align: left;
}


Change the alignment as per need to center, right for right alignment
For right alignment Follow this steps
entry-content li {
text-align: right;
}
.entry-content p {
text-align: right;
}
h3 {
text-align: right;
}
h4 {
text-align: right;
}
follow these steps for center alignment