Skip to main content

Modifying the second level navigation arrow image


Open your master page.
Switch to Code View.

Search for "TopNavigationMenu". This should take you to the global navigation (top nav) instance of AspMenu.


Using Intellisense in the code view, or using the Properties pane, add the following property to the AspMenu tag:

DynamicPopOutImageUrl="insert image URL/path here"So your code should look like:

Runat="server"
DataSourceID="topSiteMap"
DynamicPopOutImageUrl="/images/myimage.gif" >

Comments

Popular posts from this blog

SharePoint 2010 Branding: Change site actions and welcome menu arrows

Here's how you can do it. Hide the image and give our custom image element a background image. Look Like: .ms-viewselector-arrow {     background: transparent url('/PublishingImages/images/Arrow.png') no-repeat scroll 0 0;     height: 4px; /* height of the image */     width: 5px; /* width of the image */ } .ms-viewselector-arrow img {     display: none; }