473,406 Members | 2,281 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

want to create a sub sub index .. look under producs

i want to add anoter sub under the sub index tag .. but i cant get it to hide
Expand|Select|Wrap|Line Numbers
  1. <html>
  2.  
  3. <head>
  4.  
  5. <style type="text/css">
  6.  
  7. ul {
  8.     margin: 0;
  9.     padding: 0;
  10.     list-style: none;
  11.     width: 150px;
  12.     }
  13. ul li {
  14.     position: relative;
  15.     }
  16. ul li ul  {
  17.         position: relative ;
  18.         }
  19.  
  20. li ul {
  21.     position: absolute;
  22.     left: 149px;
  23.     top: 0;
  24.     display: none;
  25.     }
  26.  
  27. ul li ul  {
  28.     position: absolute;
  29.     left: 149px;
  30.     top: 0;
  31.     display: none;
  32.     }
  33.  
  34. ul li a {
  35.     display: block;
  36.     text-decoration: none;
  37.     color: #777;
  38.     background: #fff;
  39.     padding: 5px;
  40.     border: 1px solid #ccc;
  41.     border-bottom: 0;
  42.     }
  43.  
  44.  
  45. /* Fix IE. Hide from IE Mac \*/
  46. * html ul li { float: left; }
  47. * html ul li a { height: 1%; }
  48. /* End */
  49. ul {
  50.     margin: 0;
  51.     padding: 0;
  52.     list-style: none;
  53.     width: 150px;
  54.     border-bottom: 1px solid #ccc;
  55.     }
  56. li:hover ul { display: block; }
  57. </style>
  58.  
  59. </head>
  60.  
  61. <body>
  62.  
  63. <ul> 
  64.     <li><a href="#">Home</a></li> 
  65.  
  66.     <li><a href="#">Producs</a> 
  67.       <ul> 
  68.         <li><a href="#">Hard Drives</a></li>            
  69.         <li><a href="#">Cpu</a></li> 
  70.         <li><a href="#">RAM</a> 
  71.             <ul> 
  72.                  <li><a href="#">ddr2</a></li>
  73.                  <li><a href="#">ddr3</a></li>
  74.             </ul>
  75.            </li>        
  76.       </ul> 
  77.     </li> 
  78.     <li><a href="#">Services</a> 
  79.       <ul> 
  80.         <li><a href="#">Web Design</a></li> 
  81.         <li><a href="#">Internet Marketing</a></li> 
  82.         <li><a href="#">Hosting</a></li> 
  83.         <li><a href="#">Domain Names</a></li> 
  84.         <li><a href="#">Broadband</a></li> 
  85.       </ul> 
  86.     </li>
  87.     <li><a href="#">Contact Us</a> 
  88.       <ul> 
  89.         <li><a href="#">United Kingdom</a></li> 
  90.         <li><a href="#">France</a></li> 
  91.         <li><a href="#">USA</a></li> 
  92.         <li><a href="#">Australia</a></li> 
  93.       </ul> 
  94.     </li> 
  95.   </ul>
  96.  
  97. </body>
  98.  
  99. </html>
  100.  
Apr 28 '11 #1
1 1704
JKing
1,206 Expert 1GB
You need to create a rule for that.

Expand|Select|Wrap|Line Numbers
  1. ul li ul li ul {display:none;}
  2.  
Apr 29 '11 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

0
by: Guy Deprez | last post by:
Hi, i'm having a problem to create indexes. STEP 1 ----------- Connection is OK (you can find the string at the end of the message) Table ("Couleurs") creation is OK STEP 2. Index Creation
11
by: dfurtney | last post by:
SQL Server 7/2000: We have reasonably large tables (3,000,000 rows) that we need to add some indexes for. In a test, it took over 12 hours to CREATE a new INDEX against this table. One of us...
1
by: Stephane Charette | last post by:
QUICK VERSION: How do I create an index on a field of type "MONEY"? ----------------------------- LONG VERSION: I have a table with a field of type "money". I very often need to access...
2
by: Rajesh Kumar Mallah | last post by:
Hmmm... am i doing anything really silly? tradein_clients=# CREATE INDEX profile_master2 on profile_master (lower( btrim(email) ) ); ERROR: parser: parse error at or near "(" at character 61...
4
by: maricel | last post by:
Could someone confirm which tablespace is being used when running ALTER & CREATE INDEX. Is it the tempspace or the tablespace where the table resides? Many thanks, maricel
17
by: Jeffrey W. Baker | last post by:
Greetings, I have a 23GB data table upon which I am building a primary key of three columns. The data is mounted in a 137GB device and pg_xlog is mounted on a separate 3.5GB device. I have...
3
by: efiryago | last post by:
Can someone clarify what is EXTEND USING option in the CREATE INDEX command for, what kind of index structure it creates? Is it a new feature introduced in FP10, or it's been around for awhile yet?...
4
by: hastha23 | last post by:
Dear friends, My oracle version is 10 G. I have a table vactype,this table contains vac id column have null values. i want to create an index in vac id column is possible create index...
2
rsrinivasan
by: rsrinivasan | last post by:
Hi all, I want to create index on view. Is it posiible? When i create index on view, it throws the error Cannot create index on view 'q_Invoices_Issued' because the view is not schema bound.. What...
1
by: vivek samantray | last post by:
I have a query.When i try to create a index on one of the table the index gets created but when i take the output it stuill shows "TABLE ACCESS FULL" Please see below what i did QUERY ======...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.