The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
CSS color codes?
I am trying to find the exact color hex code that my forum uses (KIRSCH style) so I can match my adsense blocks to that color.
I mainly need the color inside the postbit and the color of the users name (the linked name). What file do I have to look in, in order to find this? Thanks |
#2
|
||||
|
||||
The easiest way to find out what colors your board uses is look at the code in the page to find the style sheet.. or go to ACP and look at the Main CSS for the style..
Here is your CSS.. Code:
<!-- CSS Stylesheet --> <style type="text/css" id="vbulletin_css"> <!-- /* vBulletin 3 CSS For Style 'Kirsch - Fluid' (styleid: 4) */ body { background: #FFFFFF url(images/kirsch/gradients/background.jpg) repeat; color: #000000; font: 10pt verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif; margin: 0px 0px 0px 0px; padding: 0px; } a:link { color: #0049AA; text-decoration: underline; } a:visited { color: #23488C; text-decoration: underline; } a:hover, a:active { color: #0067F0; text-decoration: none; } .page { background: #FFFFFF; color: #000000; } td, th, p, li { font: 10pt verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif; } .tborder { background: #FFFFFF; color: #000000; border: 1px solid #BEC9D1; } .tcat { background: #869BBF url(images/kirsch/gradients/gradient_tcat.jpg) repeat-x top left; color: #000000; font: bold 10pt verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif; } .tcat a:link { color: #0049AA; text-decoration: underline; } .tcat a:visited { color: #23488C; text-decoration: underline; } .tcat a:hover, .tcat a:active { color: #0067F0; text-decoration: none; } .thead { background: #5C7099 url(images/kirsch/gradients/gradient_thead.jpg) repeat-x top left; color: #000000; font: bold 11px tahoma, verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif; } .thead a:link { color: #0049AA; text-decoration: underline; } .thead a:visited { color: #23488C; text-decoration: underline; } .thead a:hover, .thead a:active { color: #0067F0; text-decoration: none; } .tfoot { background: #31688E; color: #FFFFFF; } .tfoot a:link { color: #FFFFFF; text-decoration: underline; } .tfoot a:visited { color: #FFFFFF; text-decoration: underline; } .tfoot a:hover, .tfoot a:active { color: #FFFFFF; text-decoration: none; } .alt1, .alt1Active { background: #F5F7F9; color: #000000; } .alt2, .alt2Active { background: #EEF0F2; color: #000000; } td.inlinemod { background: #FFFFCC; color: #000000; } .wysiwyg { background: #FFFFFF; color: #000000; font: 10pt verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif; } textarea, .bginput { font: 10pt verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif; } .button { font: 11px verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif; } select { font: 11px verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif; } option, optgroup { font-size: 11px; font-family: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif; } .smallfont { font: 11px verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif; } .time { color: #999999; } .navbar { font: 11px verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif; } .highlight { color: #FF0000; font-weight: bold; } .fjsel { background: #3E5C92; color: #E0E0F6; } .fjdpth0 { background: #F7F7F7; color: #000000; } .panel { background: #E4E7F5 url(images/kirsch/gradients/gradient_panel.jpg) repeat; color: #000000; padding: 10px; border: 2px outset; } .panelsurround { background: #D5D8E5 url(images/kirsch/gradients/gradient_panelsurround.jpg) repeat; color: #000000; } legend { color: #22229C; font: 11px tahoma, verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif; } .vbmenu_control { background: #31688E; color: #FFFFFF; font: bold 11px tahoma, verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif; padding: 3px 6px 3px 6px; white-space: nowrap; } .vbmenu_control a:link { color: #FFFFFF; text-decoration: underline; } .vbmenu_control a:visited { color: #FFFFFF; text-decoration: underline; } .vbmenu_control a:hover, .vbmenu_control a:active { color: #FFFFFF; text-decoration: none; } .vbmenu_popup { background: #FFFFFF; color: #000000; border: 1px solid #0B198C; } .vbmenu_option { background: #F5F7F9; color: #000000; font: 11px verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif; white-space: nowrap; cursor: pointer; } .vbmenu_option a:link { color: #0049AA; text-decoration: underline; } .vbmenu_option a:visited { color: #23488C; text-decoration: underline; } .vbmenu_option a:hover, .vbmenu_option a:active { color: #0067F0; text-decoration: none; } .vbmenu_hilite { background: #EEF0F2; color: #000000; font: 11px verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif; white-space: nowrap; cursor: pointer; } .vbmenu_hilite a:link { color: #0049AA; text-decoration: underline; } .vbmenu_hilite a:visited { color: #23488C; text-decoration: underline; } .vbmenu_hilite a:hover, .vbmenu_hilite a:active { color: #0067F0; text-decoration: none; } /* ***** styling for 'big' usernames on postbit etc. ***** */ .bigusername { font-size: 14pt; } /* ***** small padding on 'thead' elements ***** */ td.thead, div.thead { padding: 4px; } /* ***** basic styles for multi-page nav elements */ .pagenav a { text-decoration: none; } .pagenav td { padding: 2px 4px 2px 4px; } /* ***** define margin and font-size for elements inside panels ***** */ .fieldset { margin-bottom: 6px; } .fieldset, .fieldset td, .fieldset p, .fieldset li { font-size: 11px; } /* ***** don't change the following ***** */ form { display: inline; } label { cursor: default; } .normal { font-weight: normal; } .inlineimg { vertical-align: middle; } --> </style> <!-- / CSS Stylesheet --> Hope this helps! |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|