Hi,
Please follow the below steps to make design adjustments
Add one <div class=”listblockcentre”> tag with custom class before to the
tag and then add this CSS code into Appearance->Customize->Additional CSS section
.listblockcentre {
display: flex;
justify-content: center;
}
Hope this helps!
Thanks
Hi Sundar, thanks for your help. I’m a beginner and not sure I understand the first part of your reply. I tried adding <div class=”listblockcentre”> to the list block settings – advanced – additional css class but am not sure if thats what you meant. Doing that and then adding the other css to theme customize – additional css, didnt center the list but im not sure if i did the first part wrong. could you please clarify the first part of the suggestion? thanks, zarah
Hi,
You can easily add the following CSS code in Appearance->Customize->Additional CSS
.post-content ul {
text-align: center;
list-style-position: inside;
}
Thanks.
You can use it with !important
.post-content ul {
text-align: center !important;
list-style-position: inside !important;
}
Hi Sundar, thankyou very much, that’s sorted it out. Thanks again!!