Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi
I have a vertical dropdown navigation like that-
About US
- Company Profile
- History
- etc
Contact Us
Product and Service
But i need it Horizontaly top of the master page. like that-
About us Contact Us Product and Service
Can anyone help me as soon as possible.
touhid
it's just plain old css what is needed. Make sure u use display:inline or float:left for the first level list elements.Second level can just be display:block,so it lines up vertically.
Assuming you have an html structure like this:
<ul><li>first level<ul><li>seconde level</li></ul></li></ul>
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
horizontal dropdown navigation
Hi
I have a vertical dropdown navigation like that-
About US
- Company Profile
- History
- etc
Contact Us
Product and Service
But i need it Horizontaly top of the master page. like that-
About us Contact Us Product and Service
- Company Profile
- History
- etc
Can anyone help me as soon as possible.
touhid
it's just plain old css what is needed. Make sure u use display:inline or float:left for the first level list elements.
Second level can just be display:block,so it lines up vertically.
Assuming you have an html structure like this:
<ul>
<li>first level
<ul>
<li>seconde level</li>
</ul>
</li>
</ul>
is working on a reply...