Archive for the 'Web Development' Category

Internet Explorer Fixes

Published under Web Development on

Internet Explorer PNG Fix

(1) Call or Upload this .htc file onto your server where your .css file is located.
(2) Call or Upload blank.gif to the same directory as the .htc and .css files.
(3) Call the following in your css file: img, div { behavior: url(iepngfix.htc) }
(4) Make sure that you specify the exact height and width of any .png image.

Continue Reading »

No responses yet

Code Redirects

Published under Web Development on

HTML Single File Redirect
Redirect 301 /olddirectory/oldfile.html http://yoursite.com/newdirectory/newfile.html

Directory Redirect in Apache
RewriteEngine On
RewriteRule ^olddir/(.*)$ http://domain.com/newdir/$1 [R=301,L]
OR
Redirect 301 /olddirectory http://yoursite.com/newdirectory/
Continue Reading »

One response so far

Robot File Help

Published under Web Development on

To block ALL bots from crawling all pages under a directory use the entry in your robots.txt file:

User-agent: *

Disallow: /private/

To block Google from crawling all pages under a directory use the entry in your robots.txt file:
Continue Reading »

No responses yet

Web Languages

Published under Web Development on

CSS
Short for Cascading Style Sheets, a new feature being added to HTML that gives both Web site developers and users more control over how pages are displayed. With CSS, designers and users can create style sheets that define how different elements, such as headers and links, appear. These style sheets can then be applied to any Web page. The term cascading derives from the fact that multiple style sheets can be applied to the same Web page.

HTML
Short for HyperText Markup Language, the authoring language used to create documents on the World Wide Web.


Continue Reading »

No responses yet

Blog Setup & Plugins

Published under Web Development on

Setting up your Blog

Choosing what blog to setup and setting up that blog can be difficult for those who haven’t done it before. If the blog you choose has plugins, then choosing what plugins to install is also a difficult decision for many bloggers. Continue Reading »

No responses yet

alert('GET');