English 中文(简体)
Chrome 和 Firefox 的导航链接不工作
原标题:Navigation Links Not Working in Chrome and Firefox

我在网站工作,网站是http://fredsreswards.loyaltylane.com/fredschaper 。页面顶部有一个导航菜单。链接在Chrome或Firefox不工作,但在IE9中工作。网站使用几份简略文件。我在CSS和HTML中尝试过改变一些东西,但一无用。该网站是用MVC3建立的。任何建议都会非常感谢。谢谢您。

最佳回答

这是因为在航行的顶部,还有另外的一条船。

您可以设置 :

#m_box {
    /* rules you already have */
    position: relative;
}

#phar_panel {
    /* rules you already have */
    width: 230px;
    height:31px;
    right:30px;
    position: absolute;
}
#phar_panel img {
    /* rules you already have */
    left: 230px;
    position: absolute;
}

还有,要小心,你的页面上不止一个元素 具有相同的识别码(导航)!

问题回答

暂无回答




相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签