After a week of no “real” site, we are back in personal, non-business. One filesystem failure is all it takes to nearly wipeout you and your backup. I don’t think any photos I’ve uploaded have survived. I’ll have a look later. Eventually.
 Continue reading 
Tag Archives: Macintosh
Mac ready “lightbox” close widget
I use a Mac, you use a Mac. Our close window button is in the top left corner of the window so it’s convenient when a JavaScript pop-over puts the “button” there, though most don’t. A few I run into I’ve decided to throw some CSS at to fix them.
/**** Mac ready "close" widget ****/
/* WordPress admin "More info..." */
div#TB_ajaxWindowTitle {
	position:absolute;
	top:0px;
	left:25px;
	float:none !important;
	display:inline !important;
}
div#TB_closeAjaxWindow {
	display:inline !important;
	float:left !important;
	clear:left !important;
}
/* Amazon */
div.ap_close {
	left: 24px !important;
}
span.ap_closebutton {
	float:left;
	clear:left;
}
/* "Fancybox" */
a#fancybox-close {
	left:-15px !important;
}
/* "MultiBox" */
div.MultiBoxClose {
	left:-26px !important;
}
/* Disqus profile */
a.dsq-modal-close-btn {
	position:absolute !important;
	top:10px !important;
	left:10px !important;
}
This would of course go into your user defined CSS file. Which in Safari can be added at Safari > Preferences | Advanced – Style sheet:
Replace space with underscore
An AppleScript to replace spaces (‘ ‘) with underscore (‘_’) in names of files selected in the Finder. It does not do folders, but should be easy enough to modify so it can.
 Continue reading 
‘About This Mac’
A custom ‘About This Mac’ window image replacement for a 15″ Titanium PowerBook. Continue reading