It works BUT lets do this as lists because that's what they are.
Use this css:
.textblock ul {
margin: 0;
padding: 0;
}
.textblock li {
margin: 0;
padding: 0 0 12px 40px;
list-style: none;
font-size: 12px;
}
Then change all instances of #textblock to .textblock and add back in the >> code (as shown below):
<div class="textblock">
<ul>
<li>>> TANALISED FEATHEREDGE BOARD 15MM TAPPERED 4MM</li>
<li>>> 3x2 TANALISED FRAMING</li>
<li>>> 3X2 TANALISED PERLINGS</li>
<li>>> GALAVANISED GREEN BOX PROFILE STEEL ROOF</li>
<li>>> 2FT OVERHANG</li>
</ul>
</div>
Then delete all selectors in your original css that have the id #textblock as they have now been superceeded by the class - .textblock