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 days ago.
Improve this question
I have some form on internal website, where I display a gif as a progress bar showing progress of server side actions while launched by user.
Problem is that :
display of image is OK in CHROME
display of image is KO in FIREFOX (with exact same code)
<p><input type="submit" value="Download" class="btn btn-outline-primary" onclick="this.type='image'; this.src='Ressource/Progress.gif';" width="80px"></p>
Do you see some reasons why ?
Thanks to all !
checked Firefox documentation and some forum, but could solve the issue
Related
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 have a webpage weblup(dot)net/templates/template3 (replace (dot) with a '.') and it just crashes when I run it. It was working fine not long ago but I have no clue why it's crashing all of a sudden. The biggest change before this happened was that I changed a picture.
Your Website have error in logo.png and it's to big to load in website. (16620 x 9333 pixels).
Solution: Change Your Image and resolution Image
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
Hi im working on a wordpress blog and have the following problem:
http://www.catlovers.co/17-cat-reactions-that-sum-up-your-love-life/
If i resize the browser (X-Axies) to a minimum like surfing on a mobile device i am able to scroll to the right in the Contend section (hold down middle mouse button).
How can i change my CSS to disable this kind of scrolling?
I think my problem has something to do with the "post-container" class. Is the "overflow:auto" a possible problem?
Try This: in your css
#media only screen and (max-width: 479px){
.post-container{overflow: hidden;}
}
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 created php web application like 9gag, the problem is if any one view in chrome it's run nice but in internet explore it does not playing after pressing refresh it works fine. Plz help
Demo link http://myzonevideos.com/play.php?vid=8
Internet Explorer is a one crazy lame browser that ever been created. It must be something about headers of the video you are trying to view on browser.
Also you didn't provide the information that what you are using to play the videos, flash or HTML5?
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'm working on http://2014naracup.com/. At the bottom, there is a Google Maps API integration through JavaScript and a map is displayed with a target address. When you click the addresss, for some reason the registration form opens. How can I correct this and have Google Maps link to the Address that is in the map.
u didnt close the a tag
<a href="http://form.jotformpro.com/form/42335568331959" target="_blank">
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
Link http://invait.ru/CollectiveGift_template1.php
Browser is Chrome
I do the following:
1) Go on link http://invait.ru/CollectiveGift_template1.php
2) Choose an image
3) When showing an image for crop, i click on it without a crop area
And now my page scrolls down.
Tell me please how stop this bug in chrome?
Code JSCROP HERE
P.S.: Firefox doesn't have this bug...
P.P.S.: please if you want click on downvote tell mme answer. I think aboout this problem 2 days...
Find this part of your code in your Jscrop.js:
function watchKeys() //{{{
{
if (options.keySupport) {
$keymgr.show();
$keymgr.focus();
}
}
//}}}
And remove this line:
$keymgr.focus();
It is found on line 1238 in your file. Tell me if this fixes things.
This will remove the keys functionality.
Please take a look at this discussion: http://code.google.com/p/jcrop/issues/detail?id=39#c4
If you need the keys functionality, try changing fixed to absolute on line 1224:
var $keymgr = $('<input type="radio" />').css({
position: 'fixed'
and roll back the previous change