I can't determine why this text can't be scrolled over and the hyperlink (all in the body of the page) can't be clicked. I'm not sure if it's a CSS issue, or some other kind of issue.
我无法确定为什么无法滚动此文本并且无法单击超链接(所有在页面正文中)。我不确定这是一个CSS问题,还是其他一些问题。
The XHTML is valid, but the CSS isn't totally. Wondering if I can fix without totally remedying every CSS element.
XHTML是有效的,但CSS并不完全。想知道我是否可以在没有完全补救每个CSS元素的情况下修复。
http://www.writershore.com/ltlaw
Thanks for any help!
谢谢你的帮助!
2 个解决方案
#1
The z-index of your div.main
style is set to -1. Because of this, it is located under some other div. Just set it to something higher and everything should be good.
div.main样式的z-index设置为-1。因此,它位于其他div之下。只要把它设置得更高,一切都应该是好的。
#2
First on all, your site doesn't seems to validate 100% of XHTML.
首先,您的网站似乎没有验证100%的XHTML。
Also, your Web site doesn't work correctly on IE, so you must have something wrong in your XHTML and/or CSS and/or JavaScript.
此外,您的网站在IE上无法正常工作,因此您的XHTML和/或CSS和/或JavaScript中必定存在问题。
Now what you can do is to try to remove your reference to all your CSS file and see if it's work. If it's still doesn't work, remove your JavaScript reference and see if it's work.
现在你可以做的是尝试删除你对所有CSS文件的引用,看看它是否有效。如果它仍然无效,请删除您的JavaScript参考,看看它是否有效。
If fact, at this step, what you want to know is where the error come from, because if I take your "a href" tag and put it in an empty file, it's work, so your XHTML seems right.
事实上,在这一步,你想知道的是错误的来源,因为如果我把你的“a href”标签放在一个空文件中,它就可以了,所以你的XHTML似乎是对的。
My way to resolve this kind of problem is to reduce the problem at is simple expression. By that I mean, remove all the external factor that can have an impact in my problem.
我解决这类问题的方法是通过简单的表达来减少问题。我的意思是,删除可能对我的问题产生影响的所有外部因素。
I hope this will help.
我希望这将有所帮助。
Let me know of your result.
让我知道你的结果。
#1
The z-index of your div.main
style is set to -1. Because of this, it is located under some other div. Just set it to something higher and everything should be good.
div.main样式的z-index设置为-1。因此,它位于其他div之下。只要把它设置得更高,一切都应该是好的。
#2
First on all, your site doesn't seems to validate 100% of XHTML.
首先,您的网站似乎没有验证100%的XHTML。
Also, your Web site doesn't work correctly on IE, so you must have something wrong in your XHTML and/or CSS and/or JavaScript.
此外,您的网站在IE上无法正常工作,因此您的XHTML和/或CSS和/或JavaScript中必定存在问题。
Now what you can do is to try to remove your reference to all your CSS file and see if it's work. If it's still doesn't work, remove your JavaScript reference and see if it's work.
现在你可以做的是尝试删除你对所有CSS文件的引用,看看它是否有效。如果它仍然无效,请删除您的JavaScript参考,看看它是否有效。
If fact, at this step, what you want to know is where the error come from, because if I take your "a href" tag and put it in an empty file, it's work, so your XHTML seems right.
事实上,在这一步,你想知道的是错误的来源,因为如果我把你的“a href”标签放在一个空文件中,它就可以了,所以你的XHTML似乎是对的。
My way to resolve this kind of problem is to reduce the problem at is simple expression. By that I mean, remove all the external factor that can have an impact in my problem.
我解决这类问题的方法是通过简单的表达来减少问题。我的意思是,删除可能对我的问题产生影响的所有外部因素。
I hope this will help.
我希望这将有所帮助。
Let me know of your result.
让我知道你的结果。