CSS3 regions: Rich page layout with HTML and CSS3 | Adobe Developer Connection

CSS3 regions: Rich page layout with HTML and CSS3 | Adobe Developer Connection The CSS Regions prototype is a sample implementation of the proposed additions from Adobe to the W3C CSS (Cascading Style Sheet) modules to build complex, magazine-like layouts using web standards. Capturing in digital form the complex layouts of a typical magazine, newspaper, […]

Free Website ROI Calculator (Google Spreadsheet) – Smashing Magazine

Free Website ROI Calculator (Google Spreadsheet) – Smashing MagazineIs your website doing the job you are paying for it to do? The Website ROI Calculator (ROI being “return on investment”) can get you started with setting goals and following them up in order to make the most of your website. The calculator can be used […]

10 useful .htaccess snippets to have in your toolbox | CatsWhoCode.com

10 useful .htaccess snippets to have in your toolbox | CatsWhoCode.com Remove www in url For SEO reasons, you might always remove (or use) the www prefix in your urls. The following snippet will remove the www from your website url and redirect any url with the www to the non-www version. RewriteEngine On RewriteCond %{HTTP_HOST} !^your-site.com$ [NC] RewriteRule ^(.*)$ http://your-site.com/$1 […]