Hi again. I managed to find a css code to make my numbered list bold, but it affected also the breadcrumb and everything else. I know the code I found online maybe is wrong. See screenshot and code. I also tried putting the code only on the element CSS but breadcrumb was still affected.
ol {
margin: 0 0 1.5em;
padding: 0;
counter-reset: item;
}
ol > li {
margin: 0;
padding: 0 0 0 2em;
text-indent: -1em;
list-style-type: none;
counter-increment: item;
}
ol > li:before {
display: inline-block;
width: 1em;
padding-right: 0.5em;
font-weight: bold;
text-align: left;
content: counter(item) “.”;
}