Archived topic
sidebar list allignment
6 replies · Started by Michael on December 25, 2021
Hi,
i cant find an option to align the sidebar list.
I would like the bullets to start below the "E", the bullets are too far on the left.
Can you please assist me?
Thanks
sorry, here a screenshot: https://prnt.sc/24i696h
Hi Michael,
Try add this CSS:
.widget ul.disc-list li {
list-style-position: inside;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Hi Ying,
great that works, thanks a lot!
Is there also a way to change the color of the bullets?
I would like to make them blue.
Thanks
Hi there,
change Yings CSS to this:
.widget ul.disc-list li {
display: list-item;
list-style-position: inside;
}
.widget ul.disc-list li::marker {
color: #0000ff;
}
Thanks a lot David!
You're welcome