473,726 Members | 2,262 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How do I align asp:Menu items?

I have an asp:Menu control in vertical drop-down mode, a portion as displayed:


Can anyone tell me how to get Community correctly aligned with Support? Also how do I put a bit of a gap between Community and its gray border? I have the following CSS which I purchased as part of a theme from www.aspthemes.net ...)
/*-- ASP Menu --*/

/*-- Vertical Orientation --*/

..aspMenu

{

background-color: #eeeeee !important;

background-image: url(./Images/menu_headerbg.j pg) !important;

background-repeat: repeat-x !important;

}

..aspMenuDynami cHover

{

height: 25px !important;

}

..aspMenuDynami cHover tr td a:Hover

{

color: #000000 !important;

font-family: 'Trebuchet MS', Arial, Helvetica, Sans-serif !important;

font-size: 9pt !important;

font-weight: bold !important;

}

..aspMenuDynami cMenuItem

{

background-color: #eeeeee !important;

height: 25px !important;

}

..aspMenuDynami cMenuItem tr td a

{

color: #686872 !important;

font-family: 'Trebuchet MS', Arial, Helvetica, Sans-serif !important;

font-size: 9pt !important;

font-weight: bold !important;

height: 25px !important;

}

..aspMenuStatic MenuItem

{

padding: 5px 10px;

border-bottom-color: #cccccc !important;

border-bottom-style: solid !important;

border-bottom-width: 1px !important;

}

..aspMenuStatic MenuItem tr td a

{

color: #686872 !important;

font-family: 'Trebuchet MS', Arial, Helvetica, Sans-serif !important;

font-size: 9pt !important;

font-weight: bold !important;

text-decoration: none !important;

}

..aspMenuStatic MenuItem tr td a:Hover

{

color: #000000 !important;

font-family: 'Trebuchet MS', Arial, Helvetica, Sans-serif !important;

font-size: 9pt !important;

font-weight: bold !important;

}

/*-- ASP Menu --*/

/*-- Horizontal Orientation --*/

..aspMenu1

{

background-image: url(./Images/shared_headerbg .gif) !important;

background: url(./Images/shared_headerbg .gif) !important;

background-repeat: repeat-x !important;

height: 34px !important;

padding-left: 5px !important;

padding-right: 5px !important;

}

..aspMenuDynami cHover1

{

}

..aspMenuDynami cMenuItem1

{

background-color: #eeeeee !important;

}

..aspMenuDynami cMenuItem1 tr td a

{

color: #686872 !important;

font-family: 'Trebuchet MS', Arial, Helvetica, Sans-serif !important;

font-size: 9pt !important;

font-weight: bold !important;

}

..aspMenuDynami cMenuItem1 tr td a:Hover

{

color: #000000 !important;

font-family: 'Trebuchet MS', Arial, Helvetica, Sans-serif !important;

font-size: 9pt !important;

font-weight: bold !important;

}

..aspMenuDynami cMenuLevel3

{

margin-left: 16px !important;

}

..aspMenuStatic Hover1

{

}

..aspMenuStatic MenuItem1

{

}

..aspMenuStatic MenuItem1 tr td a

{

color: #686872 !important;

font-family: 'Trebuchet MS', Arial, Helvetica, Sans-serif !important;

font-size: 9pt !important;

font-weight: bold !important;

}

..aspMenuStatic MenuItem1 tr td a:Hover

{

color: #000000 !important;

font-family: 'Trebuchet MS', Arial, Helvetica, Sans-serif !important;

font-size: 9pt !important;

font-weight: bold !important;

}

Nov 9 '08 #1
0 4149

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
2696
by: Chuck Hartman | last post by:
I have a Windows service that requests web pages from a site using an HttpWebRequest object. When I try to request a page from an ASP.NET 2 site, I get a WebException with message "The remote server returned an error: (500) Internal Server Error." I found a post that suggested to catch the WebException to retrieve the actual HttpWebResponse object for more information. The response returned is shown below. At first I thought this was a...
0
1356
by: chris.mcinnes | last post by:
G'day, I'm trying to implement a graphical horizontal Menu-bar feeding off a SiteMapDataSource with some top-level menu-items and a couple of sub-menus. I've managed to get the menu bar working, but noticed that the top-level items were spaced generously. Once the menu renders on the screen I find all these "margin-left=16px"
0
1376
by: jason | last post by:
Playing around with asp.net 2.0 and asp:menu for the first time.. what's the attribute/code so that each item in my menu has a *SEPERATE* border around it? Seems I can only make the border around the entire menu. I'd like the menu to look like a datagrid. Here's my code. <form id="form1" runat="server"> <div> <asp:Menu ID="Menu1" runat="server" BackColor="#FFC080" BorderColor="Olive" BorderStyle="Ridge" BorderWidth="1px"...
2
5604
by: jason | last post by:
Does anybody know how I would get borders around each menuitem? Do I have incorportate into a table? Thanks. The below produces a border around the entire menu. <form id="form1" runat="server"> <div> <asp:Menu ID="Menu1" runat="server" BackColor="#FFC080" BorderColor="Olive" BorderStyle="Ridge" BorderWidth="1px" ForeColor="Navy"> <Items>
2
9546
by: Kevin L. Kitchens | last post by:
Howdy... Been toying the the asp:menu object in order to dump the manually generated menu I've been using, however, I cannot seem to get the coloring to work properly. First off, what CSS tags should I be setting for how the menu is eventually rendered? spans? tables? td? div? In the example below I resorted to using inline coloring and still not
0
540
by: =?Utf-8?B?SmltSGVhdmV5?= | last post by:
I have created an ASP:Menu which is Horizontal and has dynamic menu items. If I move my cursor to one of the static menu selections and click on it (which should cause nothing to happen), my screen is refreshed and the menu item "disappears". You can see that the item is there but the color of the menu item changes to a color which makes it disappear. It would appear to me that the <StaticSelectedStylewould be the style which would be...
0
2100
by: jobs | last post by:
Hi. I have a menu horizontal on the top. I figured out that if I set this property the black arrow on parent items goes away.. StaticEnableDefaultPopOutImage="False" However, the item is still wider than other items accross than items
3
2149
by: win | last post by:
I've create menu in a webform. <asp:Menu ID="Menu1" runat="server" CssClass="toolbar" Orientation="Horizontal"> <Items> <asp:MenuItem Text="Master" Value="Master"> <asp:MenuItem Text="Maintenance" Value="Maintenance"> <asp:MenuItem Text="Employee Maintenance " Value=" Employee Maintenance ">
0
1599
by: kirankumarn | last post by:
I have a asp:menu control and i'm binding menu items dynamically and the width of the top menu items is variable. So i want the width of the menu list should be equal to top static menu items, i want to do this using css Thanks in advance
0
8889
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8752
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9401
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9257
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9116
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6011
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4784
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3228
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2157
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.