Does anyone else go crazy from not being able to make individual widgets with different styles? I just learned how in case anyone is interested and its super easy if you do the CSS yourself.

1. In View Page Source find the id of the widget. Probably searching for "sidebar" will help. You'll be able to tell from the text in the widget. It will look something like 'id="text-3"

2. Then in the styles.css file, create a new id selector for #sidebar using the id number of the widget. In my theme, it was: #sidebar #text-3. Maybe in some cases it will be a class selector. Then style away.

I learned this in a tutorial. I would never have figured it out!!!