超链接 HREF 不起作用
我正在考虑一个新的网站想法。但是当我测试它时,A HREF 不起作用。它甚至没有显示手指/手指针。
它是内容区域的文本(标题下的第一个白色块,但不是菜单)。标题应该是帖子的链接(Wordpress)。
无效链接的屏幕截图(红色箭头): http://new.go80.nl/screenshots/brokenlinksscreen.png
实际上所有链接在那个区域不起作用。
在“联系方式”页面上,甚至谷歌地图都无法使用。 我无法四处走动,也无法点击链接。
有人可以帮我解决这个问题吗?我不想重新开始。
网站: http://new.go80.nl/headlines
编辑,我首先链接到主页。因为我是新来的,所以我只能添加一个链接,而主页实际上还可以,所以我链接到了标题页面。
非常感谢你们!
你好,乔里·科斯特斯
I'm a bit fooling around with a new website idea. But when i was testing it the A HREF does not work. It's not even showing a finger/hand pointer.
It's the text at the content area (the first white block under the header, but not the menu). The headers should be links to the posts (Wordpress).
screenshot of the links that do not work (red arrows):
http://new.go80.nl/screenshots/brokenlinksscreen.png
Actually all the links in that area do not work.
And at the Contact page not even the google maps work.
I can't move around and can't click the links.
Can somebody please help me figure this out? I don't want to start over.
Website: http://new.go80.nl/headlines
EDIT, i first linked to the home page. Beacouse I'm new here i could only add one link and the home page actually is OK so I linked to the Headlines page.
Thank you guys very much!
Greetings, Joeri Kosters
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
看起来默认情况下焦点会转到换页 div
编辑 #2:确保你给出一个实际显示问题的示例:)
看起来你已经得到了
z-index: -1
在div#content
上,因此它落在div#pagewrap
的“后面”,因此不可点击。摆脱它,你应该没问题。It looks like focus is going to the pagewrap div by default
EDIT #2: Make sure you give an example that actually shows the problem : )
It looks like somehow you've gotten
z-index: -1
ondiv#content
, so it is falling 'behind'div#pagewrap
and so is not clickable. Get rid of that and you should be fine.在您的
#content
id 部分的global.css
中有一个z-index: -1
。删除这个,你的问题就解决了。z-index 导致鼠标无法访问所有
#content
链接。There is a
z-index: -1
in yourglobal.css
in your#content
id section. Remove this and your problem is fixed.The z-index is making all of the
#content
links unreachable by the mouse.嗯,根据 HTML 源代码,您还没有将此文本放入
元素中。
Umm, you haven't put this text inside
<a></a>
elements, according to the HTML source.嗯,只需将这些标题文本放在“a”和 href 标签之间即可。
Umm just put those headlines text in between the "a" and href tags.