Click to See Complete Forum and Search --> : [RESOLVED] tweak text valign


fitzybizzle
06-26-2009, 06:02 AM
hi guys ! Im looking for a way to make the text closer here

http://beta.ricaiwa.ca/vfi/

in the central part of the page, I need help to get "innovations" and "ricaiwa" closer in height...

html

<div id="column_left">
<h2>Innovations <br> <span>Ricaiwa</span></h2>

css

.core h2{font-size:22px; color:#ffffff;letter-spacing:-1px;}
.core h2 span {font-size:60px;letter-spacing:-2px;}


full css here (http://beta.ricaiwa.ca/vfi/stylewa.css)

thanks for your help !:cool:

coothead
06-26-2009, 07:16 AM
Hi there fitzybizzle,

try it like this...

.core h2 span {
font-size:60px;
letter-spacing:-2px;
line-height:0.9; /* adjust this value to suit */
}

coothead

fitzybizzle
06-26-2009, 08:00 AM
all right ! thanks coothead

coothead
06-26-2009, 08:01 AM
No problem, you're very welcome. ;)