Changing style of widget

Hello, I would like to add the recent comment/recent post to my sidebar. However I would like to make changes to the style of the widget as the following sample. Can you please advice on the code ?

Thank you,

Hello There,

Thanks for writing in!

To change the styling in your recent comments widget in the sidebar like the twenty twelve theme, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

#recentcomments {
    border: none;
    box-shadow: none !important;
}

.widget.widget_recent_comments li {
    padding: 5px;    
    list-style: disc inside !important;
    border: none !important;
    box-shadow: none !important;
}

.widget.widget_recent_comments li:hover {
    background-color: transparent;
}

.widget.widget_recent_comments li a {
    font-weight: normal; 
    font-size: 100%;
    display: inline;
    border: none !important;
}

We would loved to know if this has work for you. Thank you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.