This video is another introductory video for those who are interested in Theming, but may not be aware of some of the options in the theme settings. This will explain the search box, logos, favicons and other aspects.
Subthemes is the second video in my Bending Zen Series. This shows you how to quickly set up a subtheme using Zen as your base theme in Drupal 6. Setting up a subtheme is a quick and easy way to utilize Zen's functionality without tinkering with Zen itself. It also allows you to run updates to the Zen theme without completely reworking your theme.
I was just recently searching for some free custom shapes for Photoshop. I bounced around a few sites and then came across Ladyoak. Ladyoak is a great source for Photoshop shapes, brushes, styles, actions, and more. The site requires you to register in order to access the downloads, but the downloads are FREE... and there are a lot to choose from. Just try to ignore the... *ahem* Joomla.. .*cough* section (it's .
This site is particularly good for it's collection of the Custom Shapes and Styles. With over 150 Custom Shapes and almost 200 different Styles for your downloading pleasure, it's hard not to get sucked in for some browsing and downloading. Just try not to clutter up your Photoshop with ones you probably won't use! (I found a Space Invaders custom shape package and - dispite my gut telling me that I'll probably never use that, I couldn't resist. What if I DID eventually have a Space Invaders project? that would be totally sweet! In the mean time, I'll probably play with the shapes for fun.)
But on top of that, the site has some pretty interesting Tutorials, for those who are interested in the specific styles offered.
So browse at your own risk! You may end up wasting another work hour or two downloading useless shapes and patterns! But what is the harm in that, really?
Pre-IE 6 Browsers for PC render boxes with padding differently than more recent browsers. You might notice this issue when you browser text a page that is heavy in boxes and padding.
Here is the CSS code for our example:
#box
{
width: 200px;
padding: 30px;
border: 20px;
}<div id=”box”>content</div>
Most browsers today add padding and border to the width. For instance if you set the width of the div to 200px, add a 30px padding and a 20px border – the browsers will render a 300px box.
20+30+200+30+20=300

Now for the Pre-IE Browsers, the difference is quite drastic.
Using the same CSS for the older browsers, the width is set, and then the padding and border are set within that. So the same settings above would render a 200px wide box. But remember that the border and padding would leave only 100px inside for the content.
200-20-30-30-20=100

This is QUITE a difference!
Here’s the solution. Use 2 div tags to render equally across the browsers. The outside box will determine the set size. The inside box will add the padding and border.
CSS code for the solution:
#box
{
width: 300px;
}#box div
{
padding: 30px;
border: 20px;
}<div id=”box”><div>content</div></div>
And this will render across browsers like this:

As a final note, it is obvious that you aren’t going to double ALL of your div tags in order to maintain this. I am providing this solution for a ‘trouble-shoot’. When you find your page broken as you attempt to optimize it for the older browsers, think of this solution. Only implement it where it is necessary.
Hope this helps!
I forgot where I got the suggestion for this book, but I added it to a Christmas list somewhere and behold! It was quite a surprise to get this for Christmas because most of my family does not understand what I do, much less understand what tech books I would actually read and use.
Don't Make Me Think is a perfect title for a usibility book, and it is just packed with double-references that make you stop and think about what Steve Krug is talking about in each scenerio. For instance, in the first chapter of the book, Steve explains that he made a short book because of the usibility rule that people are more likely to read and use short bits of information rather than large text books.
This book is writen to be a resource for those of us who don't have a usibility consultant or have time to run usibility tests ourselves. It gives you factors to consider when you're designing your webpages. Websites are built and designed with different ambitions, and because of this, there is no one way to design for usibility. This book outlines concepts for you to consider that can apply usibility principles to any design or layout.
Most designers do have studies in heirarchy, eye-flow, and the nature of how people read a page. What they don't always consider is that the web is like a billboard speeding by and users tend to fly through sites and only read the minimal amount of information that is necessary. This book will compliment those techniques if you keep these ideas in mind early on in the design process.
I think it is a great book to add to any web/graphic designer's arsenal. In fact, I think you should be aware of these concepts if you have any online presence.



