How would i make the background of this bullet point list a different colour i can't seem to get it to work? I want to add it to the code below:
<ul>
<li> 2 different sizes (Small & Large).</li>
</ul>
<div> </div>
<ul>
<li>2 different widths (265mm & 420mm).</li>
</ul>
<div> </div>
<ul>
<li>4 different head rest mounts.</li>
</ul>
<div> </div>
<ul>
<li>Orderable replacement pads.</li>
</ul>
This might help you.. (Not sure why you have multiple ul tags)
<ul style="background-color: aliceblue;">
<li>2 different sizes (Small & Large).</li>
<li>2 different widths (265mm & 420mm).</li>
<li>4 different head rest mounts.</li>
<li>Orderable replacement pads.</li>
</ul>