Sidebar Style

Hi,

 I would like to thank you very much for your excellent theme. When I develop the website for my customer, I have a problem about the sidebar style. You have a very good and customize menu bar in which we can change the color and so on. But for the sidebar, it has less design and settings, just words and links. Is it possible to make the sidebar function the same as menu bar? normally, the menu bar and sidebar have the same display style. example web page: http://www.scandinavianperspectives.com/our-tours/denmark

but in my webiste page with your theme, it looks a little simple:

Thank you very much again…

Best Regards,
Huan

The basic idea to style your widget would be like this:

.widget ul li {
    background: #510F60;
    padding: 5px;
    margin: 10px 0;
    color: white;
}
.widget ul li a {
    color: white;
}
.widget ul li:hover a {
    background: #439F55;
    color: #fff;
    text-decoration: none;
}
.widget ul li:hover {
    background: #439F55;
    color:#fff;
}

Other customizations are up to you. You can feel free to use plugins, your custom code etc, as this theme is made simple for a reason.