It’s Internet Explorer again.
The overflow: hidden css attribute does not work in Internet Explorer 6/7. The workaround is to set the position to relative.
.a-div {
...
overflow: hidden;
position: relative;
...
}
Done =)
Reference: CSS: Fixing overflow: hidden in IE
it can’t solve issue in the joomla 1.7 website template…!!!!
have you tried overriding the the css with !important? can it solve the problem in joomla?
thank you very much it works now:)
You are welcome. =)