[css-d] SUCKERFISH DROP DOWNS NON ALIGNMENT

2008-05-30 Thread ochieng' nelson
I have this site: ticah.50webs.com

I want to have the ul li li li aligned at the top irrespective of
length of text for the ul li li.
For example if you mouse over our work and go down to HIV,Culture 
Development.,the drop down from this which is School of
Oriental... should start on the same line as the parent list line
which is HIV, Culture.

Any ideas?

The css can be viewed at ticah.50webs.com/layout_css.css

Thanks.
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] SUCKERFISH DROP DOWNS NON ALIGNMENT

2008-05-30 Thread Gunlaug Sørtun
ochieng' nelson wrote:
 I have this site: ticah.50webs.com
 
 I want to have the ul li li li aligned at the top irrespective of
 length of text for the ul li li.

http://www.gunlaug.no/tos/alien/an/test_08_0530.html

Relevant CSS:

#nav li {
float: left;
padding: 0;
width: auto;
position: relative /* new */;
}

#nav li ul {
position: absolute;
left: -999em;
height: auto;
width: 16.5em;
w\idth: 16.0em;
margin-left:-120px;
margin-top: 1.5em /* new */;
}



#nav li li {
padding-right: 1em;
width: 15em;
border-bottom: 1px solid #FEDF99;
}

#nav li ul a {
width: 13em;
w\idth: 9em;
}

#nav li ul ul {
padding-top:0;
margin: 0;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav 
li.sfhover ul ul ul {
left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav 
li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul {
left: 95% /* new */;
top: 0 /* new */;




regards
Georg
-- 
http://www.gunlaug.no
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/