I am happy to announce that the installation and customization instructions, troubleshooting tips, API references and user / developer manuals of all Acid.JS Web 2.0 components are now available online at http://help.acidjs.wemakesites.net/. The new website will be updated with the latest changes to the manual anytime a new version of a control is released, so make sure you [...]
Archive for July, 2010
Portable Editions of Legacy, Current and Upcoming Popular Browsers
Posted in Browsers, tagged browser testing, legacy browsers, portable browsers on July 27, 2010 | Leave a Comment »
If you are careful of how your new website looks on legacy, current or upcoming browsers, below is a list containing download links to past, current and upcoming versions of several popular browsing platforms. Browsers marked with [P] are portable editions and can be used along with other versions. [L] means the latest (as of July 2010) official release. Internet Explorer 5.5 [...]
A Brief Guide to CSS Specificity
Posted in CSS, Tips and Tricks, Web Development, tagged css selectors specificity, css selectors weight, css specificity, css specificity 101, css specificity guide, css specificity tutorial on July 2, 2010 | Leave a Comment »
Specificity, also known as ”selectors weight”, is the very emanation of the ”cascadingness” of CSS. A better understanding of this concept will help avoid frustration and solve problems related to inability to override property values without using the magic of the !important flag. In brief, the specificity of CSS selectors is a simple calculation of [...]
CSS Hacks, Tricks and Proprietary Extensions
Posted in CSS, CSS Hacks, Tips and Tricks, Web Development, tagged browser specific css, css filtering, css hack, css hacks 101, css tips, css tricks, firefox css hack, gecko css hack, google chrome css hack, IE6 css hack, IE7 css hack, mozilla css hack, opera css hack, proprietary css, safari css hack, webkit css hack on July 2, 2010 | 2 Comments »
Below is a list of CSS hacks that can be used to filter out different browsers in cases when standard CSS does not work or the conditional comments of IE cannot be applied. Internet Explorer 6 * html .elementOrClassName { property: value; } .elementOrClassName { _property: value; } Internet Explorer 7 * + html .elementOrClassName [...]
CSS Optimization Tips and Tricks
Posted in Browsers, CSS, Tips and Tricks, Web Development, tagged css crunching, css optimiaztion 101, css optimization, css tips and tricks, extreme css optimization, style optimization, writing optimized css on July 2, 2010 | Leave a Comment »
1. Group selectors that share same property values. This will not only decrease the size of your stylesheets, but will make them more maintainable as well. 2. Use shorthand properties, instead of separately defining each property for font, margin, padding, border, background, etc: element { font-size: 11px; font-weight: normal; font-style: italic; font-family: Arial, Verdana, Sans-serif; [...]
Debugging IE6 issues in the shell of IE8
Posted in Browsers, Tips and Tricks, Web Development, tagged debug ie6, fix ie6 issues, ie6 debugging, ie6 tricks, internet explorer 6 debugging on July 2, 2010 | Leave a Comment »
As the debugging tool of IETester is quite clumsy and limited, we can debug issues with IE6 directly in the shell of IE8. The only requirement is that we have Internet Explorer Developer Toolbar installed on our machine. Here we go: 1. All versions of IE prior to 8 trigger quirks mode despite of the [...]