August 18, 2009

Rollover Colors in Silverlight

//Just Paste this code in your CS file on Mouse Over Handler
private void design_txt_MouseEnter(object sender, MouseEventArgs e)
{
design_txt.Foreground = new SolidColorBrush(Color.FromArgb(255, 0xFF, 0x66, 0x00));
}
private void design_txt_MouseLeave(object sender, MouseEventArgs e)
{
design_txt.Foreground = new SolidColorBrush(Colors.Black);
}

July 31, 2009

What is JQuery?

It's a JavaScript library that makes it easy to create wonderful web effects in just a few lines of code.

“jQuery is a JavaScript library that takes this motto to heart: Writing JavaScript code should be fun. jQuery achieves this goal by taking common, repetitive, tasks, stripping out all the unnecessary markup, and leaving them short, smart and understandable.”

May be you are thinking…Why I would need another JavaScript library? Just give a try and you will see how simple and powerful it is.

July 25, 2009

jQuery is a Power

jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript jQuery: The Basics

This is a basic new, designed to help you get started using jQuery. If you don't have a test page setup yet, start by creating a new HTML page.

July 9, 2009

Dreamweaver template not updating the pages

I just upgraded from an old version of Dreamweaver to CS4 Dreamweaver. Now, when I change an image on a template, pages made using that template don't update automatically. Anyone got an idea what I can do to fix this?

May 15, 2009

CSS hacks

Dealing with browser inconsistencies often makes up a majority of the work for a web designer. Sometimes there is no reasonable way to accomplish a desired layout in all major web browsers without the use of some special exception rules for certain layout engines. Hacks necessarily lead to potential complications and should be avoided whenever possible, but when the circumstances require hacks to be used, it's best to know what your options are and weigh the consequences appropriately. The purpose of this article is to describe some of the CSS hacks, also called CSS filters, with the least significant potential consequences.

How to debug HTML/CSS issues using Firefox?

There is an add-on for the Firefox web browser called Firebug. This tool can be used to analyze, debug and edit the HTML and CSS code of your pages.

Firebug makes it easy to see how HTML and CSS code is used to build a particular page. It is very useful for web designers who wish to troubleshoot a problem with their pages and debug their code.

February 28, 2009

Finding the Right Web Design Company

September 4th 2008 in Web Development Methodolgy

INTRODUCTION
A man’s error are his portals of discovery.
What does the above quotation convey? To have a portal, you have to commit mistakes. Isn’t that funny? No not at all. It may be a motivating sentence, but in business it can turn out to be doomsday for small start-ups with little investments.
We have already talked about [...]

Bookmark It