Hi Ana,

Instead of having:
<div id="something">
<ul>
<li>.....</li>
</ul>
</div>

You can use 

<ul id="something">
<li>....</li>
</ul>

And then you can control the lists individually using css such as

ul#something{
  Attributes in here
}

ul#something li{
  Attributes in here
}

That way you can put different attributes in for them, or just use ul
(with no id) to assign attributes to both. 

The reason your lists are displaying back to front is due to the
float:right; command on your ul li css rule. If you remove this and the
width on #globalNavi, and adjust the top margin you should find it falls
into place nicely.

Hope that helps

James


-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ana Aguilar
Sent: 07 December 2006 15:33
To: css-d@lists.css-discuss.org
Subject: [css-d] first posting

Hi there,
I am working on a portfolio-kind-of page and got a couple of problems I
don't know how to solve.
1. I have two navis one I called globalNavi, and another subnavi .
Somehow when I modify the subnavi, the globalNavi gets modified as well
and I dont want that. How can I modify the subnavi so it acts
independent of the other navi? where is/are the mistake(s)?
2. Why is the order in my globalNavi not working? If you notice in the
code whatever I have in the first li (home) appears on the last tab!
the layout:
http://preview.aguilar-hauke.de/Sites/test/print.html
the css:
http://preview.aguilar-hauke.de/Sites/test/styles/master.css

Could someone help me, please?

Thanks 

Ana

 
---------------------------------
Have a burning question? Go to Yahoo! Answers and get answers from real
people who know.
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org
-- http://www.evolt.org/help_support_evolt/
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to