Avoiding Top SEO Mistakes
Following are the 9 Biggest SEO Mistakes which Web Designers & Web Developers should avoid.
Splash Page
I’ve seen this mistake many times where people put up just a big banner image and a link “Click here to enter” on their homepage. The worst case — the “enter” link is embedded in the Flash [...]
Posted on May 8th, 2009 by Denie
Filed under: HTML, Tech News | No Comments »
How to set PHP error notice hidden in httpd.conf (vhost):
<VirtualHost *:80>
…
php_flag display_startup_errors off
php_flag display_errors off
php_flag html_errors off
…
</VirtualHost>
How to set individual php.ini in httpd.conf (vhost):
<VirtualHost *:80>
…
PHPIniDir ‘/path/to/php/conf/php-foo.ini’
…
</VirtualHost>
How to set individual PHPError.log in httpd.conf (vhost):
<VirtualHost *:80>
…
php_flag [...]
Posted on March 13th, 2009 by Denie
Filed under: Apache, HTML, PHP, Tutorials | No Comments »
Major hexadecimal color codes
Color
Color Code
Color
Color Code
Red
#FF0000
White
#FFFFFF
Turquoise
#00FFFF
Light Grey
#C0C0C0
Light Blue
#0000FF
Dark Grey
#808080
Dark Blue
#0000A0
Black
#000000
Light Purple
#FF0080
Orange
#FF8040
Dark Purple
#800080
Brown
#804000
Yellow
#FFFF00
Burgundy
#800000
Pastel Green
#00FF00
Forest Green
#808000
Pink
#FF00FF
Grass Green
#408080
Color code chart
Posted on February 19th, 2009 by Denie
Filed under: HTML | No Comments »
Original Post
Update: note that this article is from 2003. The CSS hack described is outdated and (maybe) shouldn’t be used.
I learned another CSS hack today – the underscore hack. You can read all about it in detail, but in essence it’s very simple.
Browsers are supposed to simply ignore CSS properties that they don’t understand. [...]
Posted on February 6th, 2009 by Denie
Filed under: HTML, Tutorials | No Comments »
There is a nasty tinyMCE error in Firefox that made my life a living hell.
First it was hard to track when it happened. Mostly when using tinyMCE in tabbed displays. I thought the two JavaScript libraries did not “support” each other. or maybe some weird variable they use together.
the error was visible in firebug (or [...]
Posted on November 13th, 2008 by Denie
Filed under: HTML, Scripting | No Comments »
From: Keith Hackett
To: All
07/23/2008 01:57:35 PM
Hi All,
I thought I’d post a frustrating problem and subsequent solution that I experienced today. A client called and reported that several users with IE 6 started experiencing “operation aborted” errors on certain pages of their web site. The problems started yesterday but no changes had been made to the [...]
Posted on August 13th, 2008 by Denie
Filed under: HTML | No Comments »