completeamateur Posted October 27, 2008 Share Posted October 27, 2008 Hi guys, I have an ordered list but I want to reduce the distance between the content & the marker... 1. <- This Distance -> Bullet Content 1 2. Bullet Content 2 Can't seem to find a way... Quote Link to comment Share on other sites More sharing options...
BoltZ Posted October 27, 2008 Share Posted October 27, 2008 We can't really help you unless you post code or a link to your website man.. Quote Link to comment Share on other sites More sharing options...
completeamateur Posted November 16, 2008 Author Share Posted November 16, 2008 In case anyone stumbles across the same problem, I solved the issue by placing a span around the bullet content (the style of which can be altered separately)... <ul> <li><span>Bullet Content 1</span></li> </ul> Quote Link to comment Share on other sites More sharing options...
BoltZ Posted November 17, 2008 Share Posted November 17, 2008 Or you could have used margin-left: Or you could be cheap and use multiple times. Quote Link to comment Share on other sites More sharing options...
haku Posted November 17, 2008 Share Posted November 17, 2008 You can do this without having to use the span tag. list-style-position: inside; padding-left: __px; // adjust this to fix the distance between the text and the bullet. Quote Link to comment Share on other sites More sharing options...
BoltZ Posted November 17, 2008 Share Posted November 17, 2008 Oops forgot padding :-\ Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.