Latest Entries

Fix stuck Menu Bar, Wifi, Clock, Battery status on Mac OSX

To fix, Open Activity Monitor ( Applications/Utilities/Activity Monitor). Anything in red is having an issue. Force quit it. My problem was SystemUIServer. Select it then click the stop sign x button at the top left of Activity Monitor. This will Force Quit it. It will restart and you should have access to your Menu Bar again.

Garmin Forerunner 910xt Tips and Tricks

1. In your "Other" sport, create a data screen that only shows one field. For that field pick 'time of day'. Disable your GPS. Now you have a $450 wrist watch.   2. Hold the "Mode" button down to to access a menu where you can change to any sport.   3. Press the power button to turn the light on at any time. You can set ...

How to disable Java in Chrome

If you are using Chrome right now... Type in chrome://plugins to your address/search bar. Find Java in the list. Click Disable. Or, you can...

dotless, internet explorer, and filters

The important things are the "~", the extra set of quotes, and the '@{imgvar}' (with the quotes around them!)

How to give text an inner shadow with CSS

This is how I did it...  

color: #38738f;
color: rgba(17,59,88,0.8);
text-shadow: -1px -1px 3px #fff, 0px 0px 1px #000;
h2 {color: #38738f; color: rgba(17,59,88,0.8); text-shadow: -1px -1px 3px #fff, 0px 0px 1px #000;}   which produced...     notice: I gave the h2 a fallback color for when the browser doesn't support rgba values. But most do ...