Archive for April, 2002

Display random image from directory

Monday, April 22nd, 2002

I’m very proud of this little baby because it’s the first script I created 100% on my own. It isn’t much and I’m sure there are much better ways to do it, but it’s my baby.

This script will allow you to display images in a set directory randomly. To see this script in action, click here and reload, reload, reload.
(more…)

How to make restricted access posts on your site

Monday, April 22nd, 2002

This requires that you’re using Moveable Type, and that you are able to run PHP on your site. It probably is possible to convert this to another type of blogging software - the key is the ability to use categories…
(more…)

new skin

Sunday, April 21st, 2002

If you scroll down to near the bottom of this page, there are 3 different skin options for you - I added a new one this morning - pick your favorite, they all rock!!!

AND, there’s a new link below each post that says “email this.” You can click this button and send a link to a post to a friend. Thanks to David for the great tutorial for this!

Enjoy!

Code, Code and More Code!

Saturday, April 20th, 2002

There are a *ton* of amazing tips at evolt.org, a truly handy resource. The articl about IE 6 centering table content has a fast, easy & effective way to keep that from happening to your site! Thanks to Cheryl for pointing out the link!

absolute positioning

Friday, April 19th, 2002

After Robyn couldn’t find this information for a new skin she was working on, I thought I’d post a bit over here.

Absolute positioning in css is a way to say exactly where you want something to be on the page. I’m gonna show you how to define it based on where the object will be relation to the top lefthand corner of the browser window. (note, this is not fully supported by some of the older browsers!)

Here’s an example of a golden text box that is 100 pixels from the top of the browser window, and 50 pixels from the left. Absolute positioning usually requires you to tell it at least how far from two sides of the window (top, bottom, right, or left) and it really likes it when you tell it dimensions like the width and height.

.textbox {position:absolute; top: 100px; left: 50px; width: 150px; height: 250px; background-color:#996633; border: solid 1px black;}

Wanna see what this looks like? Golden Textbox

By telling an box of text or a picture where you want it to sit, you can have control over things without using a bunch of nested tables that are not only slow to load, but a pain to deal with. You also can do some overlapping.

There are other elements to this, like visiblity and relative positioning, and z-indexes, and more; so I might add more about these things in the future here :)

More scripts…

Thursday, April 18th, 2002

These have been around the blog-world a few times, but wanted to put them here too (if for no one else but myself) ;-P

http://www.snipescripts.com/scripts/
http://sourceforge.net/
http://www.proxy2.de/

(I’ll update this post with more links today as I get bored. LOL!)

Character Test

Thursday, April 18th, 2002

Created this page awhile ago. The purpose was to see if special characters would show up in text boxes, alert boxes, buttons if used with the ascii code. The page is actually generated with a script and the result of the experiment proved that the characters would show up (although the euro character isn’t showing up on my browser here… weird). In any case, the list of ascii characters is also nice to have handy.

Next/Prev Links Specific to Categories in MT - v.2

Wednesday, April 17th, 2002

Jenn and I spent all day long working on earlier versions of this script, however we believe that this is the quickest, most automated way to do things.

NOTE: This will only work with MT 2.0 + as it relies on the ability to create multiple archive templates.
(more…)

case matters

Wednesday, April 17th, 2002

Do you ever wish you were more consistant about how you titled your posts? Would you notice a difference between these - Case Matters, case matters, CASE MATTERS ??

Then here’s a trick to try instead of going in and editing titles every time you were sloppy about naming!!

You’ll want a class in your stylesheet for the title (and the same class surrounding the title in your template):

.subhead {text-transform: lowercase;}

The options in text-transform are capitalize (Case Matters), uppercase (CASE MATTERS), and lowercase (case matters)

Now, when you get an urge to go uppercase, just change the code!

New goddess on the block…

Wednesday, April 17th, 2002

For her scripty-link-finding-goddess-like skills - I’ve asked Christine to join us here. Welcome! :D