CodeVerge.Net Beta


   Explore    Item Entry   Register  Login  
web_forms
getting_started
data_presentation_controls
dotnetnuke
data_access-sql_server_sql_server_express_and_sqldatasource_control
security
client_side_web_development
novell-support-groupwise-6x-clients
data_access-data_access_and_objectdatasource_control
asp-net_ajax-asp-net_ajax_control_toolkit
novell-support-netware-6x-install-upgrade
asp-net_ajax-asp-net_ajax_discussion_and_suggestions
novell-support-netware-6x-administration-tools
master_pages_themes_and_navigation_controls
configuration_and_deployment
novell-support-netware-client-winnt-2x-xp
novell-support-groupwise-7x-clients
asp-net_ajax-asp-net_ajax_ui
novell-support-edirectory-netware
community-free_for_all
visual_studio_2005
novell-support-groupwise-6x-install-setup
data_access-xml_and_xmldatasource_control
control-cancel
novell-support-iprint
advanced_asp-net-crystal_reports
data_access-xml_web_services
microsoft-public-access
novell-community-chat
state_management
novell-support-netware-6x-abends-hangs
dotnetnuke-getting_started
novell-support-groupwise-6x-gwia
-net_languages-c
novell-support-identity-manager-engine-drivers
novell-support-groupwise-discontinued
advanced_asp-net-architecture
opensuse-org-suse-linux-support-install-configure-administration
dotnetnuke-custom_modules
novell-support-groupwise-7x-install-setup-admin
novell-support-netware-6x-storage-media
novell-support-groupwise-6x-agents
installation_and_setup
data_access-access_databases_and_accessdatasource_control
windows-hosting_open_forum
visual_web_developer_2005_express
novell-support-groupwise-6x-web-access
novell-support-netware-6x-server-backup
macromedia-dreamweaver
novell-support-netware-5x-administration-tools
novell-support-ifolder
novell-support-bordermanager-install-setup
novell-support-imanager
microsoft-public-dotnet-framework-aspnet
novell-support-netware-5x-install-upgrade
novell-support-cluster-services
novell-support-bordermanager-proxies
novell-support-newsflash
advanced_asp-net-sql_server_reporting_services
microsoft-public-dotnet-languages-csharp
web_parts_and_personalization
about_this_site-feedback_on_this_website
ibm-software-websphere-portal-server
novell-support-netware-dns-dhcp
novell-support-zenworks-desktops-4x-app-launcher
-net_languages-visual_basic_-net
advanced_asp-net-custom_server_controls
novell-support-bordermanager-vpn
novell-support-ndps-neps
microsoft-public-sqlserver-programming
novell-support-netware-webserver
community-jobs
novell-support-netware-4x
advanced_asp-net-mobile_and_handheld_devices
internet_explorer_web_controls
novell-support-zenworks-desktops-4x-install-setup
novell-support-edirectory-linux
novell-support-groupwise-7x-gwia
development_tools-web_matrix_general_discussions
microsoft-public-access-formscoding
macromedia-flash
community-announcements
portal_starter_kit
novell-support-zenworks-desktops-4x-management-agent
novell-support-zenworks-patch-management
novell-support-native-file-access
microsoft-public-access-queries
microsoft-public-access-forms
novell-support-groupwise-7x-web-access
novell-support-netware-small-business-6x
data_access-active_directory_and_ldap
novell-support-edirectory-windows
novell-support-groupwise-7x-agents
novell-support-ichain
data_access-oracle
novell-support-zenworks-desktop-management-6x-imaging
novell-support-groupwise-7x-wireless
novell-support-netware-5x-abends-hangs
advanced_asp-net-localization
novell-support-zenworks-desktop-management-7x-imaging-server-nw-win




Can Reply:  No Members Can Edit: No Online: Yes
Zone: > Asp.Net Forum > general_asp.net.master_pages_themes_and_navigation_controls Tags:
Item Type: Date Entered: 3/2/2007 8:04:45 PM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
NR
XPoints: N/A Replies: 3 Views: 72 Favorited: 0 Favorite
4 Items, 1 Pages 1 |< << Go >> >|
"LSUgirl" <>
NewsGroup User
Drop shadow and highlighting of Dynamic menus3/2/2007 8:04:45 PM

0

Hi everyone,

I know this is probably an easy question but I can't find the answer anywhere. 

1.  Drop shadow on dynamic menu - I want a drop shadow on my menu. 

 2.  Hover highlighting - when hovering over a dynamic menu item, it's only changing the highlight on the text, not the entire menu item.

 Below is my skin and css for the menu.

 from skin:

 <asp:Menu Orientation= "horizontal" runat=server Width="144px" 
        DynamicHorizontalOffset="-2" 
        StaticSubMenuIndent="10px" 
        Height="17px" 
        StaticPopOutImageUrl="~/Images/arrowDownslim.ico"
        DynamicPopOutImageUrl="~/Images/arrowRightslim.ico" 
        CssClass="toolbar">
        "toolbar">
        "toolbarDynamicHover">
        "toolbarDynamic">
        "toolbar">
        "toolbarDynamic">
        "toolbarDynamic">
        "toolbar">
    </asp:Menu>
 from css:
  
.toolbar
{
	  filter: progid:DXImageTransform.Microsoft.Gradient (gradientType=0,startColorStr=#ffffff,endColorStr=#99CCFF);
	  font-family :"Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	  font-size:small;
	  color:Navy;
	  padding: 6px;

}

..toolbarDynamic
{
	filter: progid:DXImageTransform.Microsoft.Gradient (gradientType=0,startColorStr=#ffffff,endColorStr=whitesmoke);
	font-family: "Trebuchet MS" , Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	color: navy;
	text-indent: 2pt;
	border-left-width: 1px;
	border-bottom-width: 1px;
	border-right-width: 1px;
	border-top-width: 1px;
}

..toolbarDynamicHover
{
	font-family: "Trebuchet MS" , Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	color: navy;
	background: #ccccff;
	text-indent: 2pt;
	border-left-width: 1px;
	border-bottom-width: 1px;
	border-right-width: 1px;
	border-top-width: 1px;
}
 
  
Thanks, Jessica
"LSUgirl" <>
NewsGroup User
Re: Drop shadow and highlighting of Dynamic menus3/2/2007 8:57:54 PM

0

2.  figured it out.  I removed the filter and it highlights the entire item now.

 still need help on the drop shadow


Thanks, Jessica
"Zhao Ji Ma - M
NewsGroup User
Re: Drop shadow and highlighting of Dynamic menus3/9/2007 12:53:59 PM

0

Hi
Zhao Ji Ma
Sincerely,
Microsoft Online Community Support

?Please remember to click ?Mark as Answer? on the post that helps you, and to click ?Unmark as Answer? if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ?
"Zhao Ji Ma - M
NewsGroup User
Re: Drop shadow and highlighting of Dynamic menus3/9/2007 12:54:15 PM

0

Hi,

Hope this thread helps:

http://forums.asp.net/thread/914452.aspx

 


Zhao Ji Ma
Sincerely,
Microsoft Online Community Support

?Please remember to click ?Mark as Answer? on the post that helps you, and to click ?Unmark as Answer? if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ?
4 Items, 1 Pages 1 |< << Go >> >|


Free Download:













filtering sitemap nodes

frames in contentplaceholder controls

arranging items in menu control

how to access a master's page control from default.aspx page

dynamic controls and masterpage problem

masterpages problem

treeview, populateondemand, and callbacks

images in master disappear?

master pages and components in beta 2

callback in contentplaceholder

showing error message in masterpage label control

back button causes masterpage width to change

to find size of wave file

skin file for gridview

problems posting one value to another page using postbackurl and masterpages

images not appearing in treeview

when are styles added to the head for a menu control

set control properties on a master page

master page & authentication

smart navigation

nested master pages

simple data driven web form?

dragging and dropping nodes in treeview

call functions many times in my pages!!!

treeview controls (asp.net with c#)

how to populate a treeview using linq query?

designing a template homepage using masterpage

microsoft (menu) server control source code?

hide panel in my masterpage code from the contentpage.

skinning

hyperlink issue

expanding menuitem with onmouseover

treeview control accross pages asp.net 2.0

how can i embed *.swf file in a matster page menu

menu can't displaty item with sitemap

site appearance ie7

help !!! how to add a click event to asp.net tree view

expand active node in treeview control on page load

tables

asp.net treenode value in client side

how to include a url in web.sitemap?

setting up a static menu with different dynamic submenus in a different place

removing hyperlinks in sidebar of wizard control

maximizing contentplaceholder

multiview and back button

menuitem.target "_blank"

menu and <div> problem

is there a way better way? i'm sure there is but need help

help with adding header and footer to css

how to set a theme for all pages?

 
Search This Site:

 
  Privacy | Contact Us
All Times Are GMT