Jiew Meng
Jiew Meng

Reputation: 88197

Why is there some extra space between my list item

The HTML Page

Upvotes: 0

Views: 195

Answers (4)

Charlie
Charlie

Reputation: 11777

This would be an easy way to do it without modifiying anything else in your CSS.

li.categories{
margin-left:-10px;
}

Upvotes: 0

RobertPitt
RobertPitt

Reputation: 57268

Here might be the reason.

in your style-sheet around line 385

you have the following selector:

article.post footer.meta ul li.comments{}

Try and remove the line that is stated:

right: 5px;

Upvotes: 0

Will
Will

Reputation: 20235

In your <li class="comments">...</li> you have right:5px; which you don't have on any other <li>, so it is probably that.

Upvotes: 0

Sotiris
Sotiris

Reputation: 40046

what about if you remove the right:5px from article.post footer.meta ul li.comments ?

Upvotes: 4

Related Questions