When you create new items in the New Sitebuilder here is one way in which you can change the look of them using pure css.
When you add your widgets an id is created for them which enables you to target those widgets. If you eight click and inspect the widgets in firefox, chrome etc you will be able to get the widget id's.
You can view how my changes look by going to my site here http://1940snetwork.com/
I have added two lists in the side panel for the latest videos and the latest audio and also have added a photos page which I have changed how the layout looks there too.
I have added some extra post below showing the before and after views and the code used. You will notice the colour setting look different as used a different skin for the before views as this did not have the code added.
All the css code I just added to the grid css file in the skin.
Here is the code I used for the photos page, I will add more posts below for the others.
/* For the photos list page */
@media only screen and ( min-width:768px ){
#widget_id-12 .item.widget-item.widget-item-widget_list .row .col3{ width:24%; margin:0.5% }}
#widget_id-12 .item.widget-item.widget-item-widget_list .row .col3 > .p5{
padding: 5px;
border: 1px solid lightgrey;
box-shadow: 1px 2px 4px grey;
border-radius: 4px;
}
#widget_id-12 .item.widget-item.widget-item-widget_list .row .col3 > .p5 > .img-profile{
padding: 10px;
border: double 6px bisque;
background: #624949;
}
#widget_id-12 .item.widget-item.widget-item-widget_list .row .col3 > .p5 > .img-profile:hover{
padding: 10px;
border: double 6px gold;
background: #000;
}
updated by @john-bizley: 05/29/15 06:37:52AM