Clientside: Gedit Plugin To Format, Minify And Validate CSS / Javascript
Author: Andrew | Date: December 14, 2010 | View Comments | Tags: css, gedit, JavaScript, linux, plugins, ubuntu, web design
Author: Andrew | Date: December 14, 2010 | View Comments | Tags: css, gedit, JavaScript, linux, plugins, ubuntu, web design
Author: Andrew | Date: December 29, 2009 | View Comments | Tags: blogging, css, JavaScript, minify, web, web app, webmaster
Minification is the practice of removing unnecessary characters from code to reduce its size thereby improving load times. When code is minified all comments are removed, as well as unneeded white space characters (space, newline, and tab).
Author: Andrew | Date: December 03, 2009 | View Comments | Tags: css, firefox, linux, scroll, windows
background-attachment:fixed;background-attachment:scroll;Author: Andrew | Date: October 28, 2009 | View Comments | Tags: css, linux, software, stylizer, webmaster, windows, wine
Author: Andrew | Date: October 21, 2009 | View Comments | Tags: banner, css, webmaster
Author: Andrew | Date: October 01, 2009 | View Comments | Tags: css, JavaScript, tips n tricks, webmaster
<script type="text/JavaScript">
var screenwidth = screen.width;
if (screenwidth < 750){
document.write('<link rel="stylesheet" href="http://path.to/750px.css" type="text/css" media="screen" />');
}
if ((screenwidth >= 750) && (screenwidth <= 950)){
document.write('<link rel="stylesheet" href="http://path.to/750px.css" type="text/css" media="screen" />');
}
if (screenwidth => 1024) {
document.write('<link rel="stylesheet" href="http://path.to/1024px.css" type="text/css" media="screen" />');
else {
document.write('<link rel="stylesheet" href="http://path.to/verylarge.css" type="text/css" media="screen" />');
}
</script>Author: Andrew | Date: September 16, 2009 | View Comments | Tags: blogging, css, css3, html, html5, web, web design, webmaster, wordpress
This cheat sheet is essentially a simple visual grid with a list of all HTML tags and of their related attributes supported by HTML versions 4.01 and/or 5.
Author: Andrew | Date: September 13, 2009 | View Comments | Tags: css, menu, sprites, webmaster