code

Solution to background color issue with nested DIV blocks

I just found a simple solution to an issue I've been having for a long time. Many times, I create a wrapper element that contains nested columns in my web designs. For example:


It's so simple! Using CSS to control background image scaling...

Wow. I just read a fantastic, simple article on A List Apart outlining how to create full browser background images. With some very simple CSS, you can scale your background image, up or down, to fit each visitor's browser window.


body {
  background: #000 url(myBackground_1280x960.jpg) ยป
center center fixed no-repeat;
  -moz-background-size: cover;
  background-size: cover;
}

You learn something new everyday! Part 2

So this morning, I headed over to Lynda.com for some refresher training on CSS. There were a couple things I could figure out. I'm still working through those issues, but learned something really cool, and something really useful to know...

A better way to position columns

Backups made easy!

At work, we deal with numerous individual projects. These projects might be 30 second commercials, or individual websites. We have several people working on these projects, and multiple projects may be worked on per day. Because of the size of the files we use (mostly video), all our work has to be done locally. Any of you who work in IT, know where this is going. If you've ever had your home computer crash, and lost all your pictures, you know, too.

Syndicate content