First, I need to make a comment as to how I manage the site content. I use a database and PHP to manage the content. This allows me to keep the number of pages to a minimum and adding content is absurdly easy. That said, I’m building this HTML5 site using static content. Once I determine how to create my desired HTML5 site, its somewhat child’s play to convert it into a dynamic site.
So how did my next iteration work? Not bad, as you can see in Step 2b, the site is starting to resemble my current site. I have a poster image that links to a video when clicked. The time is in the right place and I need to update notes.
Note on notes: It is properly formatted as an “aside” and I’d like to make the site more friendly by using JS to display the notes on the page as compared to going to another page.
Step 2b
As I remake the site, I need to determine if Jilion is something I should consider. They claim to make a great cross-browser, HTML5 compliant, video player. Mmmmm. (and based on comments by one of my favorites; John Gruber/Daring Fireball, it is the “bee’s knees” (my words, not his).
Posted in HTML5/CSS3, Web
|
Tagged CSS, HTML5, Web
|
HTML5 holds great promise for video playback. Gone will be the days of embedded objects, plugins and (hopefully) Flash. The issue we still face are browser codec compatibilities; such as Firefox wants to see Ogg Theora and Safari wants h.264.
My next step is to explore video playback within one of the articles. I’ll start with Safari using only the video tag then explore other fallback alternatives for other browsers. I believe this will require multiple sub-steps hence Step 2a, 2b, 2c and so on.
Step 2a – clearly not an option, the video takes up 2 columns and 2 rows immediately, probably will need to use JS to create a similar effect to the shadowbox I use today
Posted in HTML5/CSS3, Web
|
Tagged CSS, HTML5, Web
|
Following a technique advocated in “transcending CSS by Andy Clarke”, I’ve taken the current design and ‘gray boxed it”. (I want to point out that my goal is to learn HTML5/CSS3, not to create a wholly new design). I simplified the site to its simplest elements:

From the graphic, you can see its a very simple layout; navigation, header, rows of three articles and a footer. Each article has a title(h1), a comment(p) and notes(aside).
I’m going to start off from scratch, building the file first using HTML5 then adding CSS3 to create an identical gray box site. This allows me to create the site without the complexity of the exact content.
Each version will continue to exist and I will add versioning as I go.
Step 1
Posted in HTML5/CSS3, Web
|
Tagged CSS, HTML5, Web
|
I’m off to redo my film site using HTML5 and CSS3. As I stated some time ago, I’ve been interested in the two technologies for some time. Little things like CSS shadows are very nice and semantic elements like article, aside and nav certainly contribute to a site better than div, div and div.
I’ve two books on HTML5; HTML5 for Web Designers/Jeremy Keith and HTML5/Bruce Lawson and Remy Sharp. Both are excellent for providing an understanding of the why along with the how.
I look forward to similar texts on CSS3.
OK! Let’s get this party started!
Posted in Tools, Web
|
Tagged CSS, HTML5, Web
|
As I’ve said before, I’ve tried to keep a local version of my site mirrored to my online version. This isn’t unusual for a lot of developers; it helps to stage your site, it allows you to make mistakes with little impact on the outside world and it allows you to be productive away from an Internet connection.
I’ve been fairly successful at doing this with WordPress 2.x. The new version seems to be a somewhat different story. My typical method of duplication is to:
- Copy the site folder from on location to another
- Copy the MySQL database with the following changes:
- Change references from www to my local MAMP server (www.wellys.com to wellys.com:8888)
- Change file location references as well (/Home/lkoepsel to /Users/Shared)
- Change the wp-config file for the proper local information
Not this time with 3.0:
- The Header didn’t change to my custom header
- The menus didn’t change to my custom menus
So far (cross fingers) those two items seem to be the only issues. Mmmm. I hate it when this happens.
UPDATE:
- The image for my header was in my media uploads folder but it wasn’t available to use for the twentyten theme (the twentyten theme only pulls images from your system and not from the media library). So I had to delete the image from my media library then reload it in the theme loader… sigh.
- The menus were setup but not enabled. I simply had to choose the menu in the theme menu settings then save menus and I was up to speed. That was nice.
UPDATE (again):
- In the past, I typically just reloaded the MySQL tables to ensure the two blogs were identical, this isn’t as easy. Instead, I have the same two issues happening again AND I’m starting to get pingbacks from my own site. This is getting to be a nasty mess.
Posted in Web
|
Tagged Web
|