Click here to Skip to main content
15,891,136 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
my projects have parent menus and child menus in menu items?IE,firefox,safari all browser shows in horizantal view ,but google only shows lik vertical ?
i want result like this:
HTML
example:parent1,parent2 
          |     |
      child1,child1   
          |     |
      child2,child2 
but google chrome show like this!
parent1->child1->child->one level up
advance thanks
Posted
Comments
Sergey Alexandrovich Kryukov 29-Dec-11 11:10am    
How about posting some code sample showing the problem? Only make is as small as possible.
Use "Improve question".
--SA

1 solution

VB
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
            If Request.UserAgent.IndexOf("AppleWebKit") > 0 Then
                Request.Browser.Adapters.Clear()
            End If
        End Sub
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900