Entries in 'Web Development'

How To Disable Java In Chrome

If you are using Chrome right now... Type in chrome://plugins to your address/search bar. Find Java in the list. Click Disable. Or, you can...

Dotless, Internet Explorer, And Filters

The important things are the "~", the extra set of quotes, and the '@{imgvar}' (with the quotes around them!)

How To Give Text An Inner Shadow With Css

This is how I did it...  

color: #38738f;
color: rgba(17,59,88,0.8);
text-shadow: -1px -1px 3px #fff, 0px 0px 1px #000;
h2 {color: #38738f; color: rgba(17,59,88,0.8); text-shadow: -1px -1px 3px #fff, 0px 0px 1px #000;}   which produced...     notice: I gave the h2 a fallback color for when the browser doesn't support rgba values. But most do ...

How To Filter A Django Form's Multiple Choice Or Foreign Key Set With A Generic View

On an app I am working on I needed to relate a photo to a project. I created a model called Connection. It basically has two fields. "Photo" and "Project". They are both foreign keys back to the Photo and Project models. Well I ran into a problem. I wanted to be able to say okay associate photo A with project B. I could do ...

Make Google Refresh The Site Preview Screen Shot

Login to the Google Webmaster Tools. Choose your site from list of sites. On the left, click "Labs"....

How To Make A Website Mobile Friendly And Responsive

This is how to make your website mobile friendly and what is known as responsive. Also known as Responsive Web Design.

The Project Owner, Ui, And Graphics Flow Chart

This chart shows how management, user interface designers, and graphic designers can all work together efficiently while developing a new section of a web site or an entirely new site.

Front End Web Development Workflow

A few things that I've found to be helpful to keep in mind while developing/coding for the front end are....

1. Start with a solid web framework

Mine would have to be django which is written in python. Django's tagline pretty much sums it up. "The Web framework for perfectionists with deadlines." Make use of things that the framework offers as freebies ...