benstillman |
07-07-2010 10:00 PM |
Add drop shadow and shading to vBAdvanced modules like vBCMS widgets
1 Attachment(s)
View the screenshots to see what it does. One is a before, the other is an after, aptly named.
Edit the CSS Template adv_portal.css
Change this:
Code:
.vba_module {
border: {vb:stylevar threadbit_border};
border-top: 1px solid {vb:stylevar body_background.backgroundColor};
}
To this:
Code:
.vba_module {
border: {vb:stylevar threadbit_border};
border-top: 1px solid {vb:stylevar body_background.backgroundColor};
-moz-border-radius:{vb:stylevar border_radius};
-webkit-border-radius: {vb:stylevar border_radius};
-moz-box-shadow:-2px 2px 2px {vb:stylevar vbcms_widget_shadow_color};
}
Save. Enjoy. Screenshots attached.
|