# Wednesday, March 05, 2008

IE8 and Jonk's Blog

Well, they almost got there.  This is Jonk's blog in Firefox:

Jonk's Blog in FF

This is Jonk's Blog in IE 8 Beta 1:

jonksBlogIE8b1

Doh.

Wednesday, March 05, 2008 5:14:09 PM (Eastern Standard Time, UTC-05:00)
#    Comments [0] |

IE8 has firebug.


IE8 has firebug., originally uploaded by astoriahermit.

Well, not really. But they built something like it.

Actually the activities functionality through the OpenService stuff looks pretty cool.

Wednesday, March 05, 2008 1:51:07 PM (Eastern Standard Time, UTC-05:00)
#    Comments [0] |
# Thursday, November 29, 2007

For Webdesigners -359 helpful links for webdesigners

Saw this on forgetfoo.com (not always safe for work) he had a post about this site

For Webdesigners: 359 helpful links for webdesigners

Foo is right, it's just one of those sites you bookmark. In fact, now that I'm all del.icio.us'd up - I'm still not sure about the network nature of the thing, I mean i grok it but I don't get it - I'll be adding this to my tag cloud.
Thursday, November 29, 2007 12:04:49 PM (Eastern Standard Time, UTC-05:00)
#    Comments [0] |
# Monday, November 26, 2007

A cool little quick and dirty CSS Layout Tool - Layout-o-Matic

Layout-o-Matic, A quick and dirty way to get a some HTML and CSS for you're desired layout. Sure, it's simple to do this yourself, but if you can get it for free in 60 seconds I'm all for it.

What you get:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="generator" content="http://www.inknoise.com/experimental/layoutomatic.php" />
    <style type="text/css">
        #container {
            width: 760px;
            \width: 780px;
            w\idth: 760px;
            border: 1px solid gray;
            margin: 10px;
            margin-left: auto;
            margin-right: auto;
            padding: 10px;
        }

        #banner {
            padding: 5px;
            margin-bottom: ;
            background-color: rgb(213, 219, 225);
        }

        #content {
            padding: 5px;
            margin-right: ;
            background-color: gray;
        }

        #sidebar-a {
            float: right;
            width: ;
            margin: 0;
            margin-left: ;
            padding: 5px;
            background-color: rgb(235, 235, 235);
        }

        #footer {
            clear: both;
            padding: 5px;
            margin-top: ;
            
            background-color: rgb(213, 219, 225);
        }
    </style>
</head>
<body>
    <div id="container">
        <div id="banner">&nbsp;</div>

        <div id="sidebar-a">&nbsp;</div>

        <div id="content">&nbsp;</div>

        <div id="footer">&nbsp;</div>
    </div>
</body>
</html>

Got this from the post The Best CSS Tools which seems to be a total regurgitation of stuff long seen before. I just like the look and name of Layout-O-Matic.

Monday, November 26, 2007 1:31:21 PM (Eastern Standard Time, UTC-05:00)
#    Comments [0] |