Hi,
I have read some topics here on this, but nothing really worked out
As the link I have provided, the orange ticks just are a little too far up, I would like to bring them down a bit.
I have tried margin-top, bottom, changing line heights but it just doesnt like it.
Hi heat33!
you are using a list-style-image, which is not moveable. Instead use a background image and then add some padding into it, for example:
.container .post-entry ul {
background: url(../images/li-tick.png);
padding: 3px 0px 3px 10px;
}
and adjust padding as needed.
Cheers!
Andy