Go Back   CodingForums.com > :: Client side development > HTML & CSS

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 03-07-2012, 05:29 PM   PM User | #1
zukmens
New to the CF scene

 
Join Date: Mar 2012
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
zukmens is an unknown quantity at this point
Add dropmenu

Hi, i need a help.

I have created this menu only with html/css:



I want to add something similar dropmenu like this:



What is the best and simply solution?

Thanks.
zukmens is offline   Reply With Quote
Old 03-07-2012, 08:42 PM   PM User | #2
telekovar
New Coder

 
Join Date: Mar 2012
Location: Tulsa, OK
Posts: 31
Thanks: 0
Thanked 3 Times in 3 Posts
telekovar is an unknown quantity at this point
Quote:
Originally Posted by zukmens View Post
Hi, i need a help.

What is the best and simply solution?

Thanks.
This is how to make the sub-menus appear and disappear... adapt it to your code ^_^

Code:
<style type="text/css">
ul li ul {
display: none;
}

ul li:hover ul {
display: block;
}
</style>

<ul>
  <li>
    Topic 1
    <ul>
      <li>Sub1</li>
      <li>Sub2</li>
      <li>Sub3</li>
    </ul>
  </li>
  <li>
    Topic 2
    <ul>
      <li>Sub1</li>
      <li>Sub2</li>
      <li>Sub3</li>
    </ul>
  </li>
</ul>
telekovar is offline   Reply With Quote
Old 03-07-2012, 09:02 PM   PM User | #3
zukmens
New to the CF scene

 
Join Date: Mar 2012
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
zukmens is an unknown quantity at this point
i know how to make submenus, but i dont know hot to make this style
zukmens is offline   Reply With Quote
Old 03-08-2012, 09:47 AM   PM User | #4
zukmens
New to the CF scene

 
Join Date: Mar 2012
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
zukmens is an unknown quantity at this point
Add rounded corners on bottom

Hi.

How can i add a rounded corners in css with image (no css3) on the bottom of my menu:

zukmens is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 02:31 AM.


Advertisement
Log in to turn off these ads.