I want to use multiple navigation menu using same css in same page. Somehow it is not working i mean it will work only one menu but rest are not working or using functionality of CSS. Why??? Here is the HTML code: <HTML> <HEAD> <meta http-equiv="Content-Language" content="en-us">
ul#tools li { border-bottom: solid 1px #b9a894; line-height: 15px; }
ul#tools ol li { border-bottom: none; }
ul#tools ol li:before { content: "- "; }
ul#tools a { text-decoration: none; outline: none; }
ul#tools a:hover { color: #539dbc; }
ul#tools a.active { color: #be5028; }
Yuriy Fuksenko
Ranch Hand
Joined: Feb 02, 2001
Posts: 413
posted
0
it may have something to do that the elements should not really have same ids. try ti use a class attribute instead
Angela D'souza
Ranch Hand
Joined: Jan 16, 2002
Posts: 469
posted
0
Originally posted by Yuriy Fuksenko: it may have something to do that the elements should not really have same ids. try ti use a class attribute instead
i am sorry but where should i use class attribute? Can you give me example?
Yuriy Fuksenko
Ranch Hand
Joined: Feb 02, 2001
Posts: 413
posted
0
instead of <ul id="menu"> use <ul class="menu">
and in CSS definition replace "#" with ".", i.e. ul.menu
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.