columner , adjust space between exhibit titles

Leetomic / 2013-06-30 09:59:09   

hi,

I'm using columner theme but i found out that the space between exhibit titles is bit
strange.

let's say.

Leetomic / 1.Ad Works /// 2.Personal Projects /// 3.Credits ////////////////4.CV
---------------------------------------------------------------------------------------
between 3 and 4 , the space is wider than other space.

here is my website: leeotmic.com

Can you help me adjust the space????

arsondpi / 2013-06-30 15:35:30   

Hmmm - I think you can edit this in line 61 (style.css)

  1. #index ul {
  2.     float: left;
  3.     list-style-type: none;
  4.     margin-right: 30px;
  5.     overflow: auto;
  6.     padding: 0;
  7.     width: auto;
  8. }

Note the width: auto; and the margin-right: 30px;

Leetomic / 2013-07-01 16:10:40   

Thank you very much!!
It works!!!!!!!
But i just want to ask you one more?

1.Ad Works /// 2.Personal Projects /// 3.Credits ///////4.CV/////// 5.etc

Can I make more space between 4 and 5, at the same time, keep the same space
from 1 to 3?

arsondpi / 2013-07-01 16:40:04   

Sure you can.
If you use Firebug (the Firefox plugin) you'll know by right clicking on a page element and then selecting the Inspect element in the dropdown menu you'll get to the css selector that you want to effect.
Try getting the right css selector and affect their margins/paddings etc, accordingly.

Skaatar / 2013-08-02 19:41:04   

Leetomic, try to write width:auto; under the #index ul in your style.css

That will make it look more in order

This thread has been closed, thank you.