Just minor things, but learned the hard way. There’s plenty of good resources out there like out there like the following that explain pretty well how to enable https in WAMP, but there is one crucial catch: Do NOT generate your server key/crt pair with just any old version of…
Things You Might Not Know About Gmail and SMTP
This gets me every time, so I am finally writing it down. You’re trying to configure some CMS SMTP mail delivery with a Gmail account, the nice simple way like pretty much every other SMTP setup you’re ever done not the Google OAUTH app stuff. But all the tests keep…
Things You Might Not Know About Bootstrap Menus
Designers. "I want that menu to drop down on hover; people shouldn't have to click it." Well, we can fix that, can't we. @media (min-width: 768px) { ul.nav li.dropdown:hover > ul.dropdown-menu { display: block; } Voila. Dropdown on hover. "And the top item should click through to one of the…