About the Robots Exclusion Standard: The robots exclusion standard or robots.txt protocol is a convention to prevent cooperating web spiders and other web robots from accessing all or part of a website. The information specifying the parts that should not be accessed is specified in a file called robots.txt in the top-level directory of the website. Notes on the robots.txt Rules: Rules of specificity apply, not inheritance. Always include a blank line between rules. Note also that not all robots […] Continue reading »
To add Lightbox functionality to any single image: Add rel="lightbox" to the anchor tag. Add a title="" attribute to the anchor tag. Add an alt="" attribute to the image tag. To add Lightbox functionality to any series of images: Add rel="lightbox[value]" to the anchor tag of each image. Add a title="" attribute to the anchor tag of each image. Add an alt="" attribute to the image tag of each image. Any set of pictures with the same rel="lightbox[value]" will display […] Continue reading »
Welcome to Perishable Press! This article covers a plethora of useful JavaScript tips and tricks. For more excellent JavaScript information, check out the JavaScript tag archive. If you like what you see, I encourage you to subscribe to Perishable Press for a periodic dose of online enlightenment ;) Nifty JavaScript Design Tricks Clickable divs Standard design practice dictates that the site logo or banner located at the top of the page links to the home page of the site. There are […] Continue reading »
For reference purposes.. Marquee Madness <marquee width="50%">Marquee Madness</marquee> So accepts the width attribute, like <img> tags. Continue reading »
Useful reference for content creators working with code snippets: Name Symbol Code Broken pipe symbol ¦ ¦ Unbroken pipe symbol | | Continue reading »
Welcome to Perishable Press! This article covers many different aspects of WordPress functionality, including customizing quicktags, deleting the cache, numbering comments & posts, changing password text, and displaying archive menus. Note that this article was written for previous versions (i.e., less than 2.0) of WordPress. Discrepancies may exist between the code presented in this post and that of more recent versions of WordPress. Nonetheless, this information is presented for references purposes with the hope that it will prove useful for […] Continue reading »
Welcome to Perishable Press! This article, Stupid .htaccess Tricks, covers just about every .htaccess “trick” in the book, and easily is the site’s most popular resource. I hope that you find it useful, and either way thank you for visiting :) In addition to this tutorial, you also may want to explore the growing .htaccess archive. Along with all things .htaccess, Perishable Press also focuses on HTML, CSS, PHP, JavaScript, security, and just about every other aspect of web design, […] Continue reading »
Color References Colour Lovers Wikipedia Hex & RGB Color Names Wikipedia Color List Color Reference Link List Color Schemes Color Match Color Scheme Generator Color Combinations Color Combination Schemes Color Charts Color Charts by HTML Color Codes Visibone Color Charts December Color Shades December Color Shades and Codes Somacon – CSS Color Chart Jessey – CSS colors Color Codes Matching Chart HTML Color Pickers Dynamic Color Picker Firefox Extensions – Colorzilla Color Tools Meyer’s Color Blender Layout Color Changer Color […] Continue reading »
Here are some basic PHP expressions and statements for ez reference.. Common Statements "\n" = new line "\t" = tab "\r" = carriage return "\$" = dollar sign "\"" = double quote Example usage: "\n\t<category>$category->cat_name</category>" echo '<!– Category LiveBookmarks Plugin by Monzilla Media ( monzillamedia.com ) –>' . "\n"; echo "\n\t<!– Pink Floyd " . " Meddle –>\n\n"; echo Multiple Lines of Code echo <<<END … line of code … … line of code … … line of code … […] Continue reading »