Tips to speed your website

While more and more people are getting access to high speed internet, there are many left on dial up. Be kind to those visitors and do a few, simple things to speed up your webpages. Think the speed of your website doesn’t matter? Think again… A 1-second delay in page load time yields: 11% fewer…

Removing Scrollbar of iframe on IE 8

In the normal cases, if we use an iframe on IE 8 having option scrolling=”no”, then the scrollbar must be hidden no matter what a browser you are using. But accidents happen. I was using AjaxToolKit Accordion in one of the web applications, and inside the AccordionPane, i added an iframe. On IE 7, firefox, chrome…

Rounded Corners in HTML

Previously, rounded corners in HTML was a difficult job, since we were obliged to use images and complex html to build a small section with rounded corners. After doing some research, I found a small method to design the div and give it a rounded corner shape: .rounded-corners { -moz-border-radius: 20px; -webkit-border-radius: 20px; -khtml-border-radius: 20px;…

DOCTYPE problem in html and px solves it !

You know sometimes when have to develop a complex website with sophisticated controls, you have to find the optimal solutions, the most friendly interface to add a proper vision to your website. So sometimes we have look for a strange solutions to satisfy our clients. This is one of the cases I faced! I was working on dynamic…