Here is an example which styles an HTML a link with a rounded corner button background.
Continue reading CSS3 – Rounded corner button background
Tag Archives: Internet Explorer
Facebook API – Infinite redirect loop problem in Internet Explorer 8
If you have the infinite redirect loop problem in Internet Explorer 8. Add the following header in PHP.
<?php
header('p3p: CP="NOI ADM DEV PSAi COM NAV OUR OTR STP IND DEM"');
?>
Done =)
Reference:
CSS – Set Image/img Opacity with Mouseover Effect
Use the following code to set image opacity.
.imgClass {
opacity: 0.5;
filter: alpha(opacity=50);
}
Continue reading CSS – Set Image/img Opacity with Mouseover Effect
CSS – Missing HTML Element in Internet Explorer 7
It’s about the greatest browser, Internet Explorer, again!
In IE7, sometimes i found that some HTML elements are gone. But if i uncheck and recheck any CSS style in Developer Tool, they will return back on the screen. Continue reading CSS – Missing HTML Element in Internet Explorer 7
CSS – Remove Button Text In Internet Explorer
We can remove the text on a HTML button by adding the text-indent css attribute on the button class. but this does not work in Internet Explorer 7. Continue reading CSS – Remove Button Text In Internet Explorer
CSS – Internet Explorer 7 Overflow Hidden Problem
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. Continue reading CSS – Internet Explorer 7 Overflow Hidden Problem
Drupal – Cufón Problem in Internet Explorer 8
The Cufón module could convert the text into image to get rid of the font display problem in different OS. For more information, please refer to Drupal – Convert Text into Image Using Cufón. Continue reading Drupal – Cufón Problem in Internet Explorer 8
Javascript – Negative substr() problem in Internet Explorer
It is very common to extract part of a string in computer programming and there is no exception in Javascript. Here are 2 functions for string extraction
- aString.substr(start, length)
- aString.substring(start, stop)
Continue reading Javascript – Negative substr() problem in Internet Explorer