• I have some links in my sidebar and they’re too close to one-another (top to bottom). How can I add a small (preferably costomizable) space in between the links?
    Thanks!!

Viewing 5 replies - 1 through 5 (of 5 total)
  • http://www.w3schools.com/css/pr_dim_line-height.asp

    Add that css property to whatever tag/class/id each link has in common.

    Or you could do it with margins, margins would probably be a better idea, since then it treats the link as a block, instead of acting on each line.

    something like:

    margin: 5px 0;

    That would give you a margin of 5 pixels on the top and bottom (and a margin of 0 on the left and right sides).

    Thread Starter flexmentalloishere

    (@flexmentalloishere)

    I don’t think I explained myself very well…

    What I wanted is a space between words on top of each other. Like this:

    Categories
    Music
    Movies
    Art
    Books

    So, lets say, between music and movies, I’d like more of a space than there already is. What would I need to add and where would I need to add it.
    Thanks again!

    Could you post a link to your site?

    line-height: ..

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Add space between words’ is closed to new replies.