2011-12-07 87 views
1

我爲樣式創建了一個佈局和文本大小的基本樣式表和幾個ASP.Net主題。出於某種原因,除「我的帳戶」元素外,其他所有菜單元素都在工作。即使是子菜單項目也能正常工作。一個非常非常奇怪的CSS/ASP.NET錯誤

Screenshot of strange CSS bug

/*Basic CSS menu Layout*/ 
#Menu 
{ 
    font-size: 24pt; 
    height: 48px; 
    width: 1000px; 
    color: White; 
    background-color: Black; 
} 

#Menu a 
{ 
    color: White; 
    text-decoration: underline; 
    width: 224px; 
    height: 48px; 
} 

#Menu a:visited 
{ 
    color: White; 
    text-decoration: none; 
} 

#Menu a:hover 
{ 
    color: White; 
    font-style: italic; 
} 
/*StyleSheetTheme menu layout*/ 
#Menu a 
{ 
    background-image: url('Menu_Default.png'); 
    background-repeat: no-repeat; 
} 

#Menu a:hover 
{ 
    background-image: url('Menu_Default.png'); 
    background-repeat: no-repeat; 
} 

#Menu a:visited 
{ 
    background-image: url('Menu_Default.png'); 
    background-repeat: no-repeat; 
} 

#Menu a:active 
{ 
    background-image: url('Menu_Default.png'); 
    background-repeat: no-repeat; 
} 
+4

你有這個標記嗎?或者你是否使用ASP.NET菜單控件?如果菜單是通過自己編寫的標記呈現的,那麼查看它以確定可能會阻止CSS選擇器定位元素的內容會很有用。 – lsuarez

+0

它應該怎麼看,它在做什麼呢? – jrummell

回答

2

問題解決了!我的錯誤很奇怪,沒問題。這是在我的網站地圖;我的3個頂級菜單項中有2個未鏈接 - 它們是類別。網站地圖方案不知道如何翻譯唯一的頂級鏈接菜單項。讓我告訴你區別:老站點地圖和工作之間的站點地圖:

OLD

當前工作

 <siteMapNode> 
      <siteMapNode url="Index.aspx" title="Home ☻" > </siteMapNode> 
      <siteMapNode url="" title="Account ☻" > 
       <siteMapNode url="Login.aspx" title="☻Login" /> 
       <siteMapNode url="Register.aspx" title="☻Register" /> 
       <siteMapNode url="EditAccount.aspx" title="☻Edit Profile" /> 
       <siteMapNode url="MyAccount.aspx" title="☻My Account" /> 
      </siteMapNode> 
      <siteMapNode url="" title="About Me ☻"> 
       <siteMapNode url="GameDesign.aspx" title="☻App Design" /> 
       <siteMapNode url="WebDesign.aspx" title="☻Web Design" /> 
       <siteMapNode url="Contact.aspx" title="☻Contact Me" /> 
      </siteMapNode> 
      <siteMapNode title="Freebies ☻ "> 
       <siteMapNode url="FreeGames.aspx" title="☻Games"/> 
       <siteMapNode url="FreeGraphics.aspx" title="☻Graphics" /> 
       <siteMapNode url="TipsnTrix.aspx" title="☻Design Tips" /> 
      </siteMapNode> 
     </siteMapNode> 
 <siteMapNode> 
      <siteMapNode url="Index.aspx" title="Home ☻" > </siteMapNode> 
      <siteMapNode url="MyAccount.aspx" title="Account ☻" > 
       <siteMapNode url="Login.aspx" title="☻Login" /> 
       <siteMapNode url="Register.aspx" title="☻Register" /> 
       <siteMapNode url="EditAccount.aspx" title="☻Edit Profile" /> 
      </siteMapNode> 
      <siteMapNode url="" title="About Me ☻"> 
       <siteMapNode url="GameDesign.aspx" title="☻App Design" /> 
       <siteMapNode url="WebDesign.aspx" title="☻Web Design" /> 
       <siteMapNode url="Contact.aspx" title="☻Contact Me" /> 
      </siteMapNode> 
      <siteMapNode title="Freebies ☻ "> 
       <siteMapNode url="FreeGames.aspx" title="☻Games"/> 
       <siteMapNode url="FreeGraphics.aspx" title="☻Graphics" /> 
       <siteMapNode url="TipsnTrix.aspx" title="☻Design Tips" /> 
      </siteMapNode> 
     </siteMapNode> 
多麼瘋狂的錯誤!我不知道你可能會搞砸你的sitemsp的模式!學過的知識;在您的站點地圖文件中保持一致;如果您已鏈接子菜單和頂級類別,請確保所有頂級菜單項都是類別,並且所有子菜單都已鏈接。

1

是斜體文字 '錯誤'? 這是在徘徊展開菜單嗎?這是你的罪魁禍首;

font-style: italic;