Announcement
Collapse
No announcement yet.
How to edit these colors?
Collapse
X
-
To change the color of the "Filter Bar" (the arrow pointing up) you have to remove the supplied background image. It doesn't currently have alpha transparency.
Change this CSS to fit your needs:
Code:.conversation-toolbar-wrapper .conversation-toolbar, .forum-list-container .forum-list-header { background: #E4E6E7 url("images/css/sprite_gradients_vb.png") repeat-x 0px -100px !important; }
background-image:none !important; into the CSS.Translations provided by Google.
Wayne Luke
The Rabid Badger - a vBulletin Cloud demonstration site.
vBulletin 5 API
Comment
-
Originally posted by AliMadkour View PostHello, Edit toolbar_background and form_field_background stylevars
to change the default editor background color add this to css_additional.css template
Code:.cke_skin_kama .cke_contents iframe{ background:[B]VALUE [/B]!important; }
- - - Updated - - -
Originally posted by Wayne Luke View PostTo change the color of the "Filter Bar" (the arrow pointing up) you have to remove the supplied background image. It doesn't currently have alpha transparency.
Change this CSS to fit your needs:
Code:.conversation-toolbar-wrapper .conversation-toolbar, .forum-list-container .forum-list-header { background: #E4E6E7 url("images/css/sprite_gradients_vb.png") repeat-x 0px -100px !important; }
background-image:none !important; into the CSS.
Comment
-
What is the code you entered into your css_additional.css template?Translations provided by Google.
Wayne Luke
The Rabid Badger - a vBulletin Cloud demonstration site.
vBulletin 5 API
Comment
-
What role does !important?
Code:.userinfo.left { background: url(images/background/); } .forum-item.main.new.forum-item { background: url(images/background/negro50.png); background-position: bottom; } .topic-item.inlinemod-item.read { background: url(images/background/fondo44.png); } .cke_skin_kama .cke_contents iframe { background: url(images/background/fondo44.png) !important; }
Comment
-
add this to css_additional.cssCode:.conversation-toolbar-wrapper .conversation-toolbar, .forum-list-container .forum-list-heade{ background:[B]VALUE[/B] !important; }
regarding your question about !important that link will help you, http://www.w3.org/TR/CSS21/cascade.html#important-rules
Comment
-
!important adds precedence to a attribute. This means it usually override other values assigned to the same attribute earlier in the cascade. !important doesn't always work because an ID has more importance than a Class and inline styles have more importance than those included in a separate file. The more specific the application the more likely it will work though.
See this article here: http://www.vanseodesign.com/css/css-...ance-cascaade/
It explains how CSS is inherited and cascades.Translations provided by Google.
Wayne Luke
The Rabid Badger - a vBulletin Cloud demonstration site.
vBulletin 5 API
Comment
-
Originally posted by sergiomc View PostNow yes, thank you very much, my style is as I needed and I was able to understand the function of !important.
You are very friendly and very attentive, thanks to both, greetings.
Comment
widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
Comment