PDA

View Full Version : line height issues


swisspolo
11-11-2007, 06:48 PM
Could someone please look at

http://www.sipedia.co.uk/mac/airfoil.php

and tell me how to change the height of the "Digg this! Furl it! ..." bar please?

thanks in advance

simon

Excavator
11-11-2007, 06:57 PM
Hello swisspolo,

In your CSS try adding a height to postfoot, like this:
#postfoot ul {
height: 10px;
float: left;
width: 100%;
background: transparent;
border-top: 2px dashed;
border-bottom: 2px dashed;
border-color: #162431;
margin-left: -12px;
line-height: 10;
}

line-height (in red) needs px or em or something, can't be just 10.

swisspolo
11-11-2007, 07:02 PM
thanks for the quick reply but that didn't work

Apostropartheid
11-11-2007, 07:04 PM
Line height is valid unitless. It achieves the same effect as ems do.

Setting your height to something higher might work.

swisspolo
11-11-2007, 07:09 PM
excellent, that worked great!

Can't believe I missed that!

thank you