weird issue with css position in IE7 - html

On this website http://rwl.rwlwater.com/ the news scroller at the bottom, after the 3 blurbs ..is not working fine in Internet explorer 7. The controller buttons are not moving if I edit the number of posts.. It's working fine in IE9, chrome, firefox, safari, etc, the issue is just with internet explorer 7.
I tried a few things, but couldn't solve it myself.
Any help would be greatly appreciated!

Add the CSS property 'zoom: 1' to the #controllers2 button or #blog2
This sets the IE property hasLayout to true and allows it to be positioned using absolute positioning.
It's a classic IE bug.

Related

Why `resize` property for textarea element not working on Safari ipad?

Why resize CSS property not working for <textarea> on the Safari iPad? On desktop browsers, it's working fine. I have searched every forum for an answer but nothing worked. Please help.

CSS Fliping animation not working in IE 9 or 10

I have created a simple CSS flip animation which works in other major browsers, seems to be not working in IE 9.0 or 1.0 for some reasons.
jsbin handler.
http://jsbin.com/IQUqUBe/1/
Below is the links which i have looked upon.
https://github.com/vinothbabu/3DFlipper
http://davidwalsh.name/demo/css-flip.php
I am not able to figure out where is the issue whether its z-index or any other property which is causing this issue and also can you guys suggest on how to debug CSS code if possible.
When it comes to debuging CSS code you can use developer tools.
For Firefox the best solution would be Firebug
for Chrome, developer tools are built-in. Simply press F12
for IE there is Internet Explorer Developer Toolbar
Its not that it does not work in IE 10. set a doctype at the top: <!DOCTYPE html> This will take IE out of quirks mode. Below is the fiddle for the same.
http://jsbin.com/IQUqUBe/3/edit
This should make the code to work in IE.
I don't know what the problem is specifically, but here is a link saying that transition does not work in IE9: http://caniuse.com/#search=transition
If you go in the "issues" tab, you'll see that it doesn't work on any pseudo-elements beside :before and :after for IE10 (and others).
EDIT: As pointed out in the comments, :hover is a pseudo class, and the link doesn't say that it doesn't work for IE10. I still don't know why it doesn't work.
Have you tried removing the -ms- prefix ? Apparently IE10 supports the transition without prefix.

Bootstrap 3 navbar dropdown, I lost support in IE8+, what did I do wrong?

So when I use Internet Explorer 10 in compatibility mode on IE8 or IE9, and I go to this page:
http://getbootstrap.com/components/#navbar
, then the dropdown behaves as expected. Now I've tried to implement the same thing on a website, this one:
http://www.fransmoret.nl/producten
, and now the dropdown doesn't seem to work properly in IE8 / IE9 mode anymore.
Can anybody tell me what I did wrong?

css inconsistency between chrome and safari

im having trouble with my css displaying correctly in both Chrome and Safari.
Because they are both webkit browsers i cant understand why.
My css positioning and div size displays perfectly in both FireFox and Safari but is all out of wak in chrome.
I have tried css reset but nothing seems to be working. Any ideas?
The website is here
www.girlsskateaustralia.com

Weird IE7 Bug/Error

I'm having some problems with a certain piece of code which sits in my site; this error only occurs in Internet Explorer 7.
Rather than post all my HTML/CSS markup here I have put up a version of the site here.
As you can see I have "Widgets" in columns, for some reason IE7 adds an extra space under the Widget Header while FF displays it fine without any space.
This error does not occur in IE8, FF3, Opera, Safari or Chrome.
Can anyone suggest why this occurring and if possible, a fix?
Thanks in advance!
Add this css to wgt-wrap and it should behave.
zoom: 1
Google for hasLayout for explanation.
[EDIT] This discussion provides more insight into this IE bug. Why does Internet Explorer need the "hasLayout" flag?
Unfortunately IE 7 doesn't run very well on Ubuntu so I'm unable to reproduce your error, but have you tried resetting your CSS with a stylesheet like Reset CSS?
There is also a great site about browser quirks that you might want to have a look at.
Did you start by zero'ing out all of your element by doing a CSS reset? I see you have a few different elements in your div, it's possible that one of these has a default marin in IE7 that is throwing everything out of wack...