- Thursday, January 21, 2010, 22:58
- CSS, News
- 2,036 views
Mozilla has finally released Firefox 3.6, the newest version of its popular browser after months of testing. New Firefox is 20% faster than Firefox 3.5, according to Mozilla. It uses Gecko 1.9.2 web-rendering, which improves its load times, startup speed and stability. Javascript execution is faster and smoother as well. There’s also autocomplete form functionality and ...
Full story
- Friday, November 6, 2009, 9:00
- CSS, Featured, How-To
- 7,268 views
Following are few CSS Tips and Tricks that I think every web developer should be aware of. You may already know many of these tricks.
Disclaimer: Not all from the below CSS tricks are written by me. Some of them are taken from different sources on internet.
1. Round Corners without images
Here is a simple CSS technique of ...
Full story
- Wednesday, September 16, 2009, 19:05
- CSS, JQuery
- 9,176 views
User experience has always been a factor to be consider while you design a website. Lot of fields such as Human Computer Interface (HCI) and Usability etc have been studied upon. While designing a user interface, special care should always been taken while placing the text fields and selecting fonts. While lot of web designers prefer ...
Full story
- Friday, September 11, 2009, 14:01
- CSS
- 3,392 views
Working with Internet Explorer and creating web pages that behaves same in IE has always been frustrating for many web developers. One way of tackling IE problem is to create
IE-Specific Stylesheet and thus it helps in avoiding breaking of design in IE.
While working on one of the requirement I had to set height of selectboxes on the webpage. Normally for setting up height ...
Full story
- Thursday, September 10, 2009, 12:35
- CSS
- 2,429 views
If you are a web developer you know how painful is to write a webpage that behaves same in all the web browsers. Generally the webpage created for Firefox behaves pretty much the same in Chrome, but Internet Explorer has its own problems. Whether it be problem with
Multiple Selection in IE or the
AJAX ...
Full story
- Thursday, August 6, 2009, 15:50
- CSS
- 26,286 views
Lot of webdesigners uses rounded corner tables and divs to display information on the webpage. Not only it looks sleek but also eye appealing.
The problem with coding such DIVs is that there is no standard way of rounding off the corners available in CSS (till now). Designers overcome this problem by using corner images to ...
Full story
- Wednesday, May 27, 2009, 13:21
- CSS, General
- 1,874 views
Hope you all have heard that behind-the-scene progress of the new version of HTML, is cruising through.
There are some good news for those preachers of web standards who give importance to the semantically correct web.
With the the new version of HTML (HTML 5), still gazing towards the recommendation stage (the specification is not yet complete and ...
Full story
- Wednesday, February 4, 2009, 14:34
- CSS, JavaScript, PHP, Tutorial
- 32,407 views
Since few days we have been registering heavy traffic spikes on our website. This lead to performance issues. As this site is currently hosted on a shared hosting server, it is very difficult to optimize the performance of the site.
We are using
Wordpress as CMS for this blog, hence we decided to ...
Full story
- Friday, November 28, 2008, 15:47
- CSS, JavaScript
- 2,513 views
You must have seen the blur effect of html elements like table, div where the opacity of these elements are slowly made to transparent or opaque. This can be acheived through javascript.
Internet Exlporer supports a CSS attribute called filter, wherein you can apply lot of different filter options available in browser. There are currently three categories of filters - Visual filters and Reveal/Blend Transition filters. ...
Full story
- Thursday, November 27, 2008, 19:06
- CSS, How-To
- 6,428 views
All we need in order to create an input box like this is an image of a magnifying glass and some CSS code.
This input box is simply created by adding a background image to the the input tag and a left padding so that the text doesn't overlap the background image.
Download following image:
This is an example of the CSS:
.searchBox{
background-image:url('images/magnifying-glass.gif');
background-repeat:no-repeat;
padding-left:20px;
}
Now, ...
Full story