Minor change to force smaller images in articles to screen width on displays less than 768px. Code below:
@media only screen and (max-width: 768px) {
/* Force small images to screen width */
article img {
width: 100%;
height: auto;
}
}
I was getting annoyed with small words showing to the right of images on mobile. This fixes that, but it is a bit of a hack. Not 100% perfect. Some tiny images, not meant to scale, will get expanded. For example, the old image emojis will be huge. But, its good enough.
In my haste to get my changelog out the door, I accidentally used a variable wrong. The result of my mistake was that modifying a log would reset the date. Not quite my intent. All fixed now!
Id been playing around with a changelog on my test site, but just getting around to porting it here to my primary site.
Following an article from Scott Hanselman, I added some social links on my blog. I didnt want to add more javascript, so I use links instead. Clean, fast and simple, visitors can share all they like. Sure, I dont get counters, but thats okay by me.