Status
Not open for further replies.

IcEWoLF

Customer
Hi there, how do I remove the red bar on top?

It was not use to be there before, not sure if something changed in the recent versions with the styling.

border.png
 
Looks like that is controlled by the stylevar sidebar_background in the group Sidebar.

Changing that may also change the background on your sideblocks, so you may want to edit the templates dbtech_vbslider_cms.css and dbtech_vbslider_forum.css and change:

Code:
.slider_widget .block {
	_margin-bottom:4px;
	padding:{vb:stylevar vbcms_widget_block_padding};
	background:transparent {vb:stylevar sidebar_background.backgroundImage} {vb:stylevar sidebar_background.backgroundRepeat} {vb:stylevar sidebar_background.backgroundPositionX}{vb:stylevar sidebar_background.backgroundPositionUnits} {vb:stylevar sidebar_background.backgroundPositionY}{vb:stylevar sidebar_background.backgroundPositionUnits};
	-moz-border-radius-top{vb:stylevar left}:{vb:stylevar border_radius};
	-moz-border-radius-top{vb:stylevar right}:{vb:stylevar border_radius};
	-webkit-border-top-{vb:stylevar left}-radius: {vb:stylevar border_radius};
	-webkit-border-top-{vb:stylevar right}-radius: {vb:stylevar border_radius};
	border-top-{vb:stylevar left}-radius: {vb:stylevar border_radius};
	border-top-{vb:stylevar right}-radius: {vb:stylevar border_radius};
}

To this:

Code:
.slider_widget .block {
	_margin-bottom:4px;
	padding:{vb:stylevar vbcms_widget_block_padding};
	background:transparent;
	-moz-border-radius-top{vb:stylevar left}:{vb:stylevar border_radius};
	-moz-border-radius-top{vb:stylevar right}:{vb:stylevar border_radius};
	-webkit-border-top-{vb:stylevar left}-radius: {vb:stylevar border_radius};
	-webkit-border-top-{vb:stylevar right}-radius: {vb:stylevar border_radius};
	border-top-{vb:stylevar left}-radius: {vb:stylevar border_radius};
	border-top-{vb:stylevar right}-radius: {vb:stylevar border_radius};
}

And see if that gives you the desired affect.
 
Status
Not open for further replies.

Legacy vBSlider

vBulletin 3.8.x vBulletin 4.x.x
Seller
DragonByte Technologies
Release date
Last update
Total downloads
838
Customer rating
0.00 star(s) 0 ratings
Back
Top