CSS to line up text items bullet point list Prestashop
This will work when you add it to the theme template
/*basic unordered list design*/
li {
color: #000;
font-size: 16px;
text-indent: -22px;
padding-left: 26px;
}
However this code needs to go into the actual element where the bullet points are located
/*Wrap lines to line up under the first line*/
#cms selector ul {
text-indent: -22px;
padding-left: 20px;
}
To add space between bullet sections
ul li { padding: 5px 0px; }
- Hits: 15