Results 1 to 3 of 3

Thread: Removing <li> vertical spacing?

  1. #1
    Join Date
    Apr 2006
    Posts
    32
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Removing <li> vertical spacing?

    http://a2h.uni.cc/blog/gamemaker.php

    (The contents of this page are taken from an RSS feed. I put the file in the blog directory because I am lazy)

    OK, you can see it's powered by the DD SimplePie script, but my problem is not related to it.

    You see the vaguely MediaWiki-ish list now? OK, how do I remove the vertical spacing between each bullet point? The source is viewable... and each article outputs with the following template:
    Code:
    <li>[description goes here] <a href="[link goes here]">Full story</a></li>

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Code:
    ul {
    	line-height: .5em;
    	list-style-type: square;
    	/*margin: .3em 0 0 1.5em;*/
    	margin: 0 0 0 1.5em;
    	padding: 0;
    	list-style-image: url(http://gmcr.scribblewiki.com/skins/monobook/bullet.gif);
    }
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Apr 2006
    Posts
    32
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Woot! Thanks...

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •