Category: (X)HTML

26 posts

I'm a Godfather

My girlfriend's ex-husband's girlfriend had a brand spankin' new baby today at 6:31. Isabella Johanna Buraglia is 8 pounds, 5 ounces, and 19 1/2 inches long. I'll be booking our trip to The Springer Show soon :).

Read more…

VC Star Article - Front and Center

Dan Short recordingWhile I was in Ojai recording the Dreamweaver 8 Beyond the Basics title for lynda.com there were some reports from the Ventura County Star writing an article on lynda.com. They wanted to take a few photos of someone doing a recording, and they ended up using a shot of me on the front page of the Business section of their February 15th article. See mom and dad, I really do do real work :). Click the image for a larger version.

Read more…

Another one bites the dust...

I finished up the new Dreamweaver 8 Beyond the Basics title for lynda.com on Friday. After 4 solid days in a little sound-proof room, it's time to head back home and catch up on all of the emails and questions from readers. The Beyond the Basics title covers advanced template usage, building multi-column CSS layouts, using some rapid coding techniques in Dreamweaver you might not have known where there, as well as a chapter on getting your feet wet with dynamic development in Dreamweaver 8.

Read more…

AJAX Link

I'm getting more and more interested in the whole AJAX buzzword. To that end, I found a link to SAJAX through the MXNA. So I'm mostly posting this link for my own reference :), but you can enjoy it too...

Read more…

Odd List issues with IE and display: block

While building a tree based menu with a soon-to-be-released DWfaq extension, I started running into some very odd issues. The navigation is your typical +/- tree based menu. In order to get the + and - icons to be clickable, I set them as a background image on my <a> tags, and added some left padding to them. This worked well in Mozilla and IE on the PC and Safari on the Mac. However, IE on the mac would display the hand cursor over the + and - buttons, but they weren't clickable, you had to actually click the text to make it work. In order to fix the clickable issue on IE5 Mac, I set the anchor tags to display: block. Perfect in IE Mac, but this caused another problem....

Read more…

FireFox

Posting this to my blog from the new FireFox browser (used to be FireBird) and I must say that it's pretty darn slick. Faster, still with the same great developer tools like CSS edit, but there's also a new DOM Inspector. Talk about tasty stuff :)

Read more…

Tables to Divs

3-Column layouts don't always have to be table based. I had a client who purchased one of the older Project Seven Design Packs, and wanted to update it to load a little quicker and be more standards based.

Read more…

Welcome to the world of CSS :)

Was playing a bit with getting a completely different looking layout without actually moving the placement of my DIVs in the code. The Ashleep theme is the result of that. Not really happy with it yet, because Mozilla adds extra padding to the top divs in the sidebar and neither IE nor Mozilla seems to draw them the right percentage width.

Read more…

Spring Cleaning

I finally did some "spring cleaning" and cleaned up the test area on my website. I've tried to index most of it (and there is quite a bit I haven't got to yet), but you can find some code I'm working on, and some you can grab for yourself in my little playground.

Read more…

Get in line PRIVATE!!!

That's right, I'm being strict. XHTML Strict to be exact. What did it take? Removing target attributes and borders from links and images. <br /> instead of <br>. Hmm... that's about it :). Dontcha just love it. Check out my article on MM DesDev (The X(HTML) Files) to learn a little more.

Read more…

Tables aren't evil...

Skeptic: Dan, Dan, Dan... I see tables on this page, but your logo at the top says "sans tables." What's up wit dat?
Dan: Skeptic, skeptic, skeptic... "sans tables" means that I'm not using tables for layout purposes. I'm not using shims and &nbsp;'s to hold table cells open.
Skeptic: But aren't tables evil, shouldn't you be using CSS instead of tables?
Dan: There's where you're wrong. In fact, in CSS2, there are numerous styles just for dealing with tables and their styling. Look at the style sheet on the blog, and you'll see a style like "border-collapse: collapse". This is a style just for tables. In fact, there is absolutely no formatting information on the table tags in my posted schedule. All colors and borders are done with CSS. Use tables to your heart's content, so long as it's for tabular data, such as the DEVCON schedule below. Tables aren't evil, they just need to be used in the right context.
Skeptic: Ahhh... now I feel better...

Read more…