New Design for BlogCFC - Thanks OSWD!
Posted on Apr 07, 2005
I finally put a new design on my site courtesy of OSWD (as always). This time I included updating Raymond Camden's blog application, which seems to have gone pretty smoothly. The design I chose is dittoditto by Christopher Ditto. The changes to the BlogCFC were easy enough, but I had to add in an "overflow: scrollable" attribute to the code view to keep the width in line (just adding width caused the text to go outside the bounding box). I kinda like the way that worked out anyway. Let me know what you think.
Comments
Try this for your code comments:
.code {
white-space: nowrap;
overflow: auto;
padding: 5px;
font-family: courier;
font-size: 11px;
border: solid thin #0000cc;
background-color: #ffffcc;
}
I use blogCFC on my site and that is what I use:
<a href="http://www.thewarp.org">The Warp</a>
Posted By Jeff / Posted on 05/04/2005 at 3:38 PM
Actually there should be a width in there too:
width:400px;
Posted By Jeff / Posted on 05/04/2005 at 3:45 PM