Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Adding space between links WordPress

  • SOLVED

On my homepage...

http://www.hawriandmandy.com/

My sidebar has some retailers links under the title "Grab it here from us!"
I have been trying to create some space between the links, but can't seem to figure it out.

I used the "padding-top", but nothing happened. I also tried the br tag, but there ended up being too much space in between.

Is there something else I can try?

Answers (5)

2011-04-29

Maor Barazany answers:

add the padding-top as you did, and add also <strong> display: inline-block;</strong>

That will make the padding to work for your links.


ddoodnath comments:

I will try this


ddoodnath comments:

PERFECT! it works exactly how i need it to. Thanks!


Maor Barazany comments:

Your welcome :) I'm happy it helped you.

2011-04-29

Peter Michael answers:

Add this to your stylesheet:


.column-right a{line-height:1.5;}

2011-04-29

Geet Purwar answers:

Add display: inline-block; and that will allow to add padding properties on the element.

2011-04-29

hemant hapani answers:

Hi,

Please add This in your style.css line No: 59 file.

padding-bottom:5px;

Thanks

2011-04-29

derekshirk answers:

Adding


.column-right a {margin: 0 0 4px 0;}


should also work