Posted on June 4th, 2009 by Jans
One of the most powerful features of CSS is the cascading. Knowing how a browser chooses and applies your styles is invaluable knowledge. There are various methods to apply css to an element.
External Style Sheets – All css will written in separate file and include in html
Embedded Style Sheets – write all [...]
Filed under: Css | No Comments »
Posted on June 16th, 2008 by Jans
Tabbing
Users who do not or cannot use pointing devices can ‘tab’ through links, and as such, links should be in a logical tabbing order. The “tabindex” attribute allows you to define this order although if the HTML is linear, as it should be, a logical tabbing order should automatically fall into place.
Accesskeys
Accesskeys allow easier navigation [...]
Filed under: Css, HTML, Tips & Tricks, Web | 1 Comment »
Posted on November 13th, 2007 by Jans
A powerful advantage of using PHP is that you can compress your files so that they take up less room on your server. There are multiple ways of achieving this, one method is as follows:
<?php
ob_start(“ob_gzhandler”);
?>
Just add that to the very beginning of main.php or global.php or whatever. Right now the file may be very small [...]
Filed under: Css, PHP, Tips & Tricks | 1 Comment »
Posted on October 18th, 2007 by Jans
This is an alternative to the image and audio captcha and it is much simpler than the other two methods.
1. Add an input field to your form, with some interesting name, for example ‘URL’.
<input name=”url” type=”text” value=””/>
2. Hide the input box using css so that users(genuine) cannot see it directly.
<style>
.style1 {
display: none;
}
</style>
<p class=”style1″><input name=”url” type=”text” [...]
Filed under: Css, HTML, PHP, Security, Web | 1 Comment »
Posted on May 9th, 2007 by Jans
Following are some of the top mistakes occurs while creating an HTML email.
Mistake #1: Not testing your campaign enough.
Before you send an email out to your entire list, you should have sent at least 4 or 5 tests to yourself, and to all your test accounts. Whenever we send a newsletter, we send about a [...]
Filed under: Css, E-mail | No Comments »