CSS not applying in Firefox, Chrome/IE is fine [closed] - html

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 years ago.
Improve this question
I am trying to get the #contact section (First Name, Surname, Position, Company) as well as the search text on the left hidden nav to change from black to white.
I've added the CSS in (multiple locations) however the colors are still not changing in Firefox. Could anyone check it over and tell me what might be happening as I am fairly lost.
http://biolineapp.com/#contact

input::-moz-placeholder {
color: white;
}

Related

How can I make my File Upload button have a hover state? [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 3 years ago.
Improve this question
I was able to customize a file upload button with CSS in my site, but for some reason I cannot change it's background color in its hover state. Everything else works just fine.
I tried the usual :hover property but it doesn't work.
Here is my codepen:
https://codepen.io/paulamourad/pen/GRRZMZO
Change the
.btn-img-upload:hover {
background-color: red;
}
to
.btn-block:hover .btn-img-upload{
background-color: red;
}

Magic square cannot hide [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 years ago.
Improve this question
I have my page - link
And at the bottom of It when loading page showing dark grey square which I don't know how to hide. Tried with inspect element, but no results.. Maybe you can do something?
try to change background-color of body to #FFF
body{ background-color:#FFF; }

Font visual rendering different on safari. Working fine on chrome [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 years ago.
Improve this question
Footer text visual not looking same at Safari. Working fine on chrome. I have applied many hacks to fix issue but no luck.
Attached image of issue with difference in safari and chrome:
http://prntscr.com/g5t8kg
It's may be help to you, just add this code in your css, it's safari hack code
::i-block-chrome, footer .address, .address a {
-webkit-text-stroke-width: 0.5px;
}

When you link an image in html it leaves this blue hyperlink pixel in the bottom right? [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
i linked couple of images that i have been working on and this has happened before but i fixed it by making the hyperlink text color the same as the background but i can not do that this time since i have an image as my background.
I think it's because link has a underline, for fix:
css:
text-decoration: none;

Why firefox is cutting off the placeholder text [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 years ago.
Improve this question
I've an issue in Firefox browser, it is cut off a little bit from the placeholder text. Please check the below link for a snapshot.
Any help please?
Thanks,
Try
input {
line-height: 1.5em;
}
From the pic it looks like it needs more room for your text.