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;…

MS SharePoint Designer makes life complicated or easy?!

Microsoft SharePoint designer 2007 is a tool supposes to be helpful when it comes to changing design of master pages and SharePoint web pages.  But yet there is always some bugs in the tools. If you open a SharePoint master page using SharePoint Designer (lets say the \12\Templates\Layouts\application.master), it will automatically change the paths of…

SharePoint List Management

Working with MOSS 2007 is simple and easy since you can create your own lists and manage them through SharePoint website settings. But when we start building a website under SharePoint, we need to manage and customize these lists from the code. I created a small website using Microsoft.SharePoint.dll, to manage SharePoint lists. I created…

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…