Entries Tagged 'Mac' ↓
December 16th, 2007 — CSS, JavaScript, Javascipt, Mac, Web Development
The letter-spacing is treated differently on OSX than Windows XP. This can cause problems if you basing a design off text-based CSS. This fix works perfectly if you using a simple dropdown menu that uses absolute positions and auto margins, so its not a child of the initial menu you made, an example can be seen here: www.cmcri.org
A simple javascript code can detect a MAC platform with an IF statement, IF it is MAC then write to document a style. This code must be inserted after your initial call for your style sheet so it overwrites the original CSS code.
if(navigator.userAgent.indexOf('Mac') != -1)
{document.write ('<style type="text/css">#header ul li a{letter-spacing:.025em;}</style>');}
Easy fix!
November 20th, 2006 — Mac, Mods, OS X
Isn't it annoying that apple doesn't set a mouse back button in os x, or even give you the option?! Well there is a cure for those of us that cannot live without a back and forward button when browsing with safari and firefox.
Unfortunately DCE hasn't discovered a way to script this yet without relying on software, but we are working on it. Though we have figured out how to remap on Windows XP here, figures. Right now we are using a program called Steer mouse. You have the options to configure each mouse button to whatever you like, including a combination of shortcut keys. In this case we want to bind our back button (button 4) to cmd + [ open safari and your backing with ease. You can set the forward button assigning cmd + ] for mouse button 5. My forward button is set to expose shortcut keys (as seen in the image). To do this you must set temporailty unbind your expose setting to have the key register in steermouse.
Download the steermouse installer here
November 8th, 2006 — Mac, OS X, PC, Windows XP