Quote:
Originally Posted by GaryT
I'm simply trying to figure out what CSS controls this area I have been inquiring about. I can make my own changes if I just know where to look.
Thanks
|
In additional.css find:
Code:
/* ---------------------------New CSS Definitions------------------------------- */
Add under:
Code:
.blockrow.member_blockrow {
color: {vb:stylevar sidebar_content_color} !important;
-moz-border-radius:{vb:stylevar border_radius} !important;
-webkit-border-radius: {vb:stylevar border_radius} !important;
border-radius: {vb:stylevar border_radius} !important;
background:{vb:stylevar sidebar_content_background} !important;
border: 0px solid #2b3851 !important;
_background-image: none !important;
padding:{vb:stylevar vbcms_widget_content_padding} !important;
-moz-box-shadow: inset -2px 2px 2px {vb:stylevar shadow_color} !important;
-webkit-box-shadow: inset -2px 2px 2px {vb:stylevar shadow_color} !important;
box-shadow: inset -2px 2px 2px {vb:stylevar shadow_color} !important;
}
dl.stats dt, #sidebar_container dl.stats, #sidebar_container .blockbody.userprof_content, #sidebar_container .userprof_content .time, .userprof_content .time {
color: {vb:stylevar sidebar_content_color} !important;
background-color: transparent;
background-image: none;
}
.mini_stats.blockbody.userprof_content.userprof_content_border {
color: {vb:stylevar sidebar_content_color} !important;
}
.stats {
color: {vb:stylevar sidebar_content_color} !important;
}
.block.userprof_editor.userprof_moduleinactive.userprof_headers {
background: transparent !important;
border: none !important;
}
.formcontrols.profile_editor_border {
background: transparent !important;
border: none !important;
}
.actionbuttons.transparent {
background: transparent !important;
border: none !important;
}
.member_blockrow.userprof_headers.userprof_headers_border {
background: #222937 !important;
border: 1px solid {vb:stylevar mid_border.borderColor} !important;
color: rgb(205, 205, 205) !important;
}
.vm_blockrow.userprof_content.userprof_content_border {
background: #222937 !important;
border: 1px solid {vb:stylevar mid_border.borderColor} !important;
color: rgb(255, 255, 255) !important;
}
That will solve most of the profile styling issues but the other areas may still revolve around profile customization. I also noticed in another thread you stated that you have all Dark styles currently disabled until you figure this out? Try that same code in those dark styles of course replacing the #222937 background colors respectively and it may solve most if not all of your CSS issues

.