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... Link to comment https://forums.phpfreaks.com/topic/130340-spacing-between-list-markers-and-content/ 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.. Link to comment https://forums.phpfreaks.com/topic/130340-spacing-between-list-markers-and-content/#findComment-676029 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> Link to comment https://forums.phpfreaks.com/topic/130340-spacing-between-list-markers-and-content/#findComment-691677 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. Link to comment https://forums.phpfreaks.com/topic/130340-spacing-between-list-markers-and-content/#findComment-691724 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. Link to comment https://forums.phpfreaks.com/topic/130340-spacing-between-list-markers-and-content/#findComment-691918 Share on other sites More sharing options...
BoltZ Posted November 17, 2008 Share Posted November 17, 2008 Oops forgot padding :-\ Link to comment https://forums.phpfreaks.com/topic/130340-spacing-between-list-markers-and-content/#findComment-692030 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.