I have recently made my website responsive, it is a joomla site, and on the mobile version anywhere that I have a form, when you type in the text you can barely see it because of the color. I have been playing around in the css trying to add color to it but to no avail. Could you please help me crack this thing, it is driving me nuts and several people that have tried using the form have complained about it. The website is www.destinychurchjacksonville.com and the online giving is an example of where it does this. Thank you a bunch!
我最近使我的网站响应,它是一个joomla网站,并且在移动版本的任何地方,我有一个表单,当你输入文本时,你几乎看不到它的颜色。我一直在用css试图为它添加颜色,但无济于事。你能不能帮我解决这个问题,它让我疯了,试过使用这个表格的几个人抱怨了。该网站是www.destinychurchjacksonville.com,在线捐赠就是这样做的一个例子。谢谢你!
1 个解决方案
#1
On line 368 of black.css there is a css rule for input[type="text"]
that sets the color: #ccc;
a light grey. If you can edit the file black.css and change the color property value to #000 (black) as so: color: #000;
在black.css的第368行,输入[type =“text”]的css规则设置了颜色:#ccc;浅灰色。如果您可以编辑文件black.css并将颜色属性值更改为#000(黑色),则:color:#000;
On the non-mobile site the input field inherits the color property from the body element and is thus black.
在非移动站点上,输入字段从body元素继承color属性,因此是黑色的。
Let me know if you need more details on the above.
如果您需要有关上述内容的详细信息,请与我们联系。
#1
On line 368 of black.css there is a css rule for input[type="text"]
that sets the color: #ccc;
a light grey. If you can edit the file black.css and change the color property value to #000 (black) as so: color: #000;
在black.css的第368行,输入[type =“text”]的css规则设置了颜色:#ccc;浅灰色。如果您可以编辑文件black.css并将颜色属性值更改为#000(黑色),则:color:#000;
On the non-mobile site the input field inherits the color property from the body element and is thus black.
在非移动站点上,输入字段从body元素继承color属性,因此是黑色的。
Let me know if you need more details on the above.
如果您需要有关上述内容的详细信息,请与我们联系。