Category Archives: HTML

Create and Add a Favicon

Create/source your desired image, preferrably with a transparent background. Crop it into a square. Go to favicon.cc and click ‘Import Image’ on the left side. Choose the resize option In the preview box, click ‘Download Favicon.’ Save it to your … Continue reading

Super Easy jQuery Accordion Menu

I created this accordion menu rather on accident. (See my previous post, ). I was actually writing jQuery to make a show/hide question answer list, and realized it would be really easy to turn it into an accordion menu.

Here’s the result: Continue reading

Textarea Scrolling in Firefox

1. Firefox will put a vertical AND horizontal scrollbar on a textarea by default. To get rid of the horizontal scrolling, use this: overflow-y: scroll; (or overflow-y: auto if you don’t want your scrollbar to appear if it’s not needed) … Continue reading