Bootsrap autohidingnavbar not works smooth on internet explorer - html

Bootstrap autohiding navbar works jumping when we scrolls on internet explorer browser
it is not smooth. please give a solution
link is http://www.usawebdept.com/designprojects/Almarelo/demo1/buyer-Dashboard.html

I found an article exactly on your issue posted.
http://css-tricks.com/eliminate-jumps-in-horizontal-centering-by-forcing-a-scroll-bar/
Also listed in the comments are some other suggestions if you don't like the suggested answer, such as:
html {
min-height:100%;
margin-bottom:1px
}

Related

Using CSS overflow, clip-path, Got trouble only on Safari Mobile

I was trying to apply a parallax effect using the combination of clip-path and a fixed image. The effect worked well, as demonstrated in the following Github repo.
Github repo: https://falasol.github.io/overflow/
Demo Page: https://falasol.github.io/overflow/
As you can see in the following gif image, I was tapping the Lorem text on my iPhone and the image poped out, instead of poping out the text selector.
The video of tapping the div
This issue only occurred on Safari Mobile, worked well on Andriod phones and desktop Chrome inspector tool. My current assumption of this question is that the overflow:hidden is having some issues on Safari Mobile.
Please give me some suggestion on this if you have ever got this issue before :)
This doesn't happen to me when I try it with my iPhone on Safari.
Maybe giving the next div a position:relative; and z-index:1; will fix it for you?

Isotope horizontal layout not working in Chrome and Firefox; possible bug in tumblr

While working on a tumblr theme, I noticed that even though Isotope's horizontal 'horiz' layout works perfectly in Safari, in Chrome and Firefox, the layout just doesn't seem to work. When I type something in the search box (filtering), the layout reloads properly, but doesn't seem to obey css height/width restrictions on the container. The page whose effects work in Safari but not in Chrome/Firefox : 01.
Desandro's horizontal layout example on codepen was working on all browsers, so to check if it may be tumblr messing up, I reduced the problem to exactly what DeSandro had written in his codepen example. Even then, it did not work on tumblr, in both Chrome and Firefox. It's working in Safari. The page of the reduced problem : 02.
It's important to note that the default layout, 'masonry', works on all browsers. I have not found anyone using Isotope's horizontal 'horiz' layout on a tumblr theme, so I cannot compare my theme with theirs or learn from them. Is this a possible bug on tumblr's part? If anyone can pinpoint the problem and explain what is going on here so that I can make the theme look like how it does in Safari, I would be so thankful!
I've found the problem. Chrome and Firefox were not loading the horizontal.js script correctly, " because its MIME type ('text/plain') is not executable". Linking the file to rawgit.com/... worked (referring to an answer for a previously asked question).

IE8 issue - Some images and styles are working, others aren't

I don't understand why some images and styles are working on IE8 and others aren't in the same page of the same website!
http://www.chrissteeleperkins.com/
The homepage is fine but the images in the footer are missing in the whole website.
If you go to other pages of the website, sometimes the css style looks to be missing.
This weird behaviour seems to appear on IE8 - Windows 7.
Any help or suggestions?
Thank you,
Giorgio
The homepage is fine but the images in the footer are missing in the whole website.
Seems, that problem is with float: left in <li> elements. Try fixing size of blocks or make elements inline;
The problem is compatibility of your css/javascript with upper versions of IE, This should help you out.
Above is just a work around better way would be to fix your css and javascript/jquery to take care of compatibility issues.

Background-attachment: fixed in ie10 causing image to jump

as said in title, I am having problems with background-attachment:fixed in internet explorer.
Here is an example of my problem:
JsFiddle
As you can see, it works nicely in all browsers accept IE. What I have noticed is that if you disable smooth scrool, the jumping stops(Tools --> Internet options --> advance --> Browsing -->Smooth scrool), but the page does not look that nice. This is of coruse not a solution, because one can't explain to visitors to disable smooth scroll.
So...does anyone have any idea how to solve this?
This is a bug that Microsoft are working on. It's so bloody annoying

Good 'ole Internet Explorer Problems

I'm running into some little glitch on Internet Explorer. The site looks like it should in Firefox (http://i27.photobucket.com/albums/c190/blcArmadillo/FirefoxView.jpg). But when I load it in Internet Explorer the background from my top bar seems to be applied across the site as you can see in this screenshot: http://i27.photobucket.com/albums/c190/blcArmadillo/AfterLoad.jpg. The odd thing is that if I scroll up and down the page, the parts of the page that leave the view of the screen suddenly have the proper white background as you can see in this screenshot: http://i27.photobucket.com/albums/c190/blcArmadillo/AfterScroll.jpg.
The site is temporarily residing at http://evergreenwebdesigns.com/playground/dsite/. If you know how to fix this glitch please let me know. Thanks for your help.
This is the common "hasLayout" IE issue. Check out the fix I suggested for another CSS problem that should work in your case as well.
In your case though you should apply it to IE7 as well, so:
<style>
.haslayout {
* display:inline-block; /* Limit to IE7 and below */
}
</style>
And apply this class to the offending div