Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Design and Graphics Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #11  
Old 03-24-2011, 10:34 AM
SVTCobraLTD SVTCobraLTD is offline
 
Join Date: Jul 2007
Location: PA
Posts: 841
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I already looked into that. It is gray like it should be. Just not sure what controls that box being added?
Reply With Quote
  #12  
Old 03-24-2011, 12:16 PM
BirdOPrey5's Avatar
BirdOPrey5 BirdOPrey5 is offline
Senior Member
 
Join Date: Jun 2008
Location: New York
Posts: 10,610
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

OK, I joined your forum to see the editor code...

The issue is with the CSS for vBulletin_editor which controls the color around your editor. When I removed this from my own editor code, the grey disappeared and just like yours.

In my source code (www.juot.net/forums/) if you want to compare, I have this code on my HTML source page:
HTML Code:
<!-- Editor Styles -->

<style type="text/css" id="vbulletin_editor_css_dynamic">

<!--

@import url("clientscript/vbulletin_editor.css?v=386");



.vBulletin_editor {

	background: #E1E1E2;

	padding: 6px;

}

.imagebutton {

	background: #E1E1E2;

	color: #000000;

	padding: 1px;

	border: none;

}

.ocolor, .ofont, .osize, .osmilie, .osyscoloar, .smilietitle {

	background: #FFFFFF;

	color: #000000;

	border: 1px solid #FFFFFF;

}

.popup_pickbutton {

	border: 1px solid #FFFFFF;

}

.popup_feedback {

	background: #FFFFFF;

	color: #000000;

	border-right: 1px solid #FFFFFF;

}

.popupwindow {

	background: #FFFFFF;

}

#fontOut, #sizeOut, .popup_feedback div {

	background: #FFFFFF;

	color: #000000;

}

.alt_pickbutton {

	border-left: 1px solid #E1E1E2;

}

.popup_feedback input, .popup_feedback div

{

	border: 0px solid;

	padding: 0px 2px 0px 2px;

	cursor: default;

	font: 11px tahoma;

	overflow: hidden;

}

-->

</style>

<!-- / Editor Styles -->
But you are missing all of that.
Reply With Quote
  #13  
Old 03-24-2011, 12:36 PM
SVTCobraLTD SVTCobraLTD is offline
 
Join Date: Jul 2007
Location: PA
Posts: 841
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you very much for taking the time to look at this.

Where does this coding get entered though? I cannot find any file or style called Vbulletin_editor?
Reply With Quote
  #14  
Old 03-24-2011, 12:40 PM
BirdOPrey5's Avatar
BirdOPrey5 BirdOPrey5 is offline
Senior Member
 
Join Date: Jun 2008
Location: New York
Posts: 10,610
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

There's a template editor_css

This is a copy and paste from my editor_css template:

Code:
<!-- Editor Styles -->
<style type="text/css" id="vbulletin_editor_css_dynamic">
<!--
@import url("clientscript/vbulletin_editor.css?v=$vboptions[simpleversion]");

.vBulletin_editor {
	background: {$istyles[pi_button_normal][0]};
	padding: $stylevar[cellpadding]px;
}
.imagebutton {
	background: {$istyles[pi_button_normal][0]};
	color: {$istyles[pi_button_normal][1]};
	padding: {$istyles[pi_button_normal][2]};
	border: {$istyles[pi_button_normal][3]};
}
.ocolor, .ofont, .osize, .osmilie, .osyscoloar, .smilietitle {
	background: {$istyles[pi_menu_normal][0]};
	color: {$istyles[pi_menu_normal][1]};
	border: {$istyles[pi_menu_normal][3]};
}
.popup_pickbutton {
	border: {$istyles[pi_menu_normal][3]};
}
.popup_feedback {
	background: {$istyles[pi_menu_normal][0]};
	color: {$istyles[pi_menu_normal][1]};
	border-$stylevar[right]: {$istyles[pi_menu_normal][3]};
}
.popupwindow {
	background: {$istyles[pi_menu_normal][0]};
}
#fontOut, #sizeOut, .popup_feedback div {
	background: {$istyles[pi_menu_normal][0]};
	color: {$istyles[pi_menu_normal][1]};
}
.alt_pickbutton {
	border-$stylevar[left]: 1px solid {$istyles[pi_button_normal][0]};
}
.popup_feedback input, .popup_feedback div
{
	border: 0px solid;
	padding: 0px 2px 0px 2px;
	cursor: default;
	font: 11px tahoma;
	overflow: hidden;
}
-->
</style>
<!-- / Editor Styles -->
It should help, but my colors may be different.

Save your editor_css to a text file first in case you need to go back.
Reply With Quote
  #15  
Old 03-24-2011, 02:42 PM
SVTCobraLTD SVTCobraLTD is offline
 
Join Date: Jul 2007
Location: PA
Posts: 841
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Still nothing. Refreshed browser with clearing cache and still no go.
Reply With Quote
  #16  
Old 03-24-2011, 03:10 PM
BirdOPrey5's Avatar
BirdOPrey5 BirdOPrey5 is offline
Senior Member
 
Join Date: Jun 2008
Location: New York
Posts: 10,610
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Check the source code and see if that editor_css code is in it. If it's not your style isn't calling the editor_css template at all. Probably points to a problem in SHOWTHREAD template, but lets not get ahead of ourselves.
Reply With Quote
  #17  
Old 03-24-2011, 03:34 PM
SVTCobraLTD SVTCobraLTD is offline
 
Join Date: Jul 2007
Location: PA
Posts: 841
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Code:
<table cellpadding="0" cellspacing="0" border="0">
<tr>
	<td id="vB_Editor_001" class="vBulletin_editor" width="100%">
		<div id="vB_Editor_001_controls" class="controlbar">

			<table cellpadding="0" cellspacing="0" border="0">
			<tr>
				<td><div class="imagebutton" id="vB_Editor_001_cmd_removeformat"><img src="images/styles/visualdepth/editor/removeformat.gif" width="21" height="20" alt="Remove Text Formatting" /></div></td>
			
				<td><img src="images/styles/visualdepth/editor/separator.gif" width="6" height="20" alt="" /></td>
			
			
				<td><div class="imagebutton" id="vB_Editor_001_popup_fontname" title="Fonts">
					<table cellpadding="0" cellspacing="0" border="0">
					<tr>
						<td class="popup_feedback"><div id="vB_Editor_001_font_out" style="width:91px">&nbsp;</div></td>
						<td class="popup_pickbutton"><img src="images/styles/visualdepth/editor/menupop.gif" width="11" height="16" alt="" /></td>

					</tr>
					</table>
				</div></td>
			
			
				<td><div class="imagebutton" id="vB_Editor_001_popup_fontsize" title="Sizes">
					<table cellpadding="0" cellspacing="0" border="0">
					<tr>
						<td class="popup_feedback"><div id="vB_Editor_001_size_out" style="width:25px">&nbsp;</div></td>
						<td class="popup_pickbutton"><img src="images/styles/visualdepth/editor/menupop.gif" width="11" height="16" alt="" /></td>
					</tr>

					</table>
				</div></td>
			
			
				<td><img src="images/styles/visualdepth/editor/separator.gif" width="6" height="20" alt="" /></td>
				<td><div class="imagebutton" id="vB_Editor_001_popup_forecolor" title="Colors">
					<table cellpadding="0" cellspacing="0" border="0">
					<tr>
						<td id="vB_Editor_001_color_out"><img src="images/styles/visualdepth/editor/color.gif" width="21" height="16" alt="" /><br /><img src="clear.gif" id="vB_Editor_001_color_bar" alt="" style="background-color:black" width="21" height="4" /></td>
						<td class="alt_pickbutton"><img src="images/styles/visualdepth/editor/menupop.gif" width="11" height="16" alt="" /></td>
					</tr>

					</table>
				</div></td>
			
			
				<td><img src="images/styles/visualdepth/editor/separator.gif" width="6" height="20" alt="" /></td>
				<td><div class="imagebutton" id="vB_Editor_001_popup_smilie" title="Smilies">
					<table cellpadding="0" cellspacing="0" border="0">
					<tr>
						<td><img src="images/styles/visualdepth/editor/smilie.gif" alt="" width="21" height="20" /></td>
						<td class="alt_pickbutton"><img src="images/styles/visualdepth/editor/menupop.gif" width="11" height="16" alt="" /></td>
					</tr>

					</table>
				</div></td>
			
			
				<td><div class="imagebutton" id="vB_Editor_001_popup_attach" title="Attachments">
					<table cellpadding="0" cellspacing="0" border="0">
					<tr>
						<td><img src="images/styles/visualdepth/editor/attach.gif" alt="" width="21" height="20" /></td>
						<td class="alt_pickbutton"><img src="images/styles/visualdepth/editor/menupop.gif" width="11" height="16" alt="" /></td>
					</tr>
					</table>

				</div></td>
			
			
				<!--
				<td><img src="images/styles/visualdepth/editor/separator.gif" width="6" height="20" alt="" /></td>
				<td><div class="imagebutton" id="vB_Editor_001_cmd_cut"><img src="images/styles/visualdepth/editor/cut.gif" width="21" height="20" alt="Cut" /></div></td>
				<td><div class="imagebutton" id="vB_Editor_001_cmd_copy"><img src="images/styles/visualdepth/editor/copy.gif" width="21" height="20" alt="Copy" /></div></td>
				<td><div class="imagebutton" id="vB_Editor_001_cmd_paste"><img src="images/styles/visualdepth/editor/paste.gif" width="21" height="20" alt="Paste" /></div></td>
				-->
	
				<td><img src="images/styles/visualdepth/editor/separator.gif" width="6" height="20" alt="" /></td>
				<td><div class="imagebutton" id="vB_Editor_001_cmd_undo"><img src="images/styles/visualdepth/editor/undo.gif" width="21" height="20" alt="Undo" /></div></td>
				<td><div class="imagebutton" id="vB_Editor_001_cmd_redo"><img src="images/styles/visualdepth/editor/redo.gif" width="21" height="20" alt="Redo" /></div></td>

			<td width="100%">&nbsp;</td>
			
				<td>
					<div class="imagebutton" id="vB_Editor_001_cmd_resize_0_100"><img src="images/styles/visualdepth/editor/resize_0.gif" width="21" height="9" alt="Decrease Size" /></div>

					<div class="imagebutton" id="vB_Editor_001_cmd_resize_1_100"><img src="images/styles/visualdepth/editor/resize_1.gif" width="21" height="9" alt="Increase Size" /></div>
				</td>
			
				<td><div class="imagebutton" id="vB_Editor_001_cmd_switchmode"><img src="images/styles/visualdepth/editor/switchmode.gif" width="21" height="20" alt="Switch Editor Mode" /></div></td>
			
			</tr>
			</table>

			
			<table cellpadding="0" cellspacing="0" border="0">
			<tr>
			
				<td><div class="imagebutton" id="vB_Editor_001_cmd_bold"><img src="images/styles/visualdepth/editor/bold.gif" width="21" height="20" alt="Bold" /></div></td>

				<td><div class="imagebutton" id="vB_Editor_001_cmd_italic"><img src="images/styles/visualdepth/editor/italic.gif" width="21" height="20" alt="Italic" /></div></td>
				<td><div class="imagebutton" id="vB_Editor_001_cmd_underline"><img src="images/styles/visualdepth/editor/underline.gif" width="21" height="20" alt="Underline" /></div></td>
			
			
				<td><img src="images/styles/visualdepth/editor/separator.gif" width="6" height="20" alt="" /></td>
				
				<td><div class="imagebutton" id="vB_Editor_001_cmd_justifyleft"><img src="images/styles/visualdepth/editor/justifyleft.gif" width="21" height="20" alt="Align Left" /></div></td>
				<td><div class="imagebutton" id="vB_Editor_001_cmd_justifycenter"><img src="images/styles/visualdepth/editor/justifycenter.gif" width="21" height="20" alt="Align Center" /></div></td>
				<td><div class="imagebutton" id="vB_Editor_001_cmd_justifyright"><img src="images/styles/visualdepth/editor/justifyright.gif" width="21" height="20" alt="Align Right" /></div></td>
				
			
			
				<td><img src="images/styles/visualdepth/editor/separator.gif" width="6" height="20" alt="" /></td>
			
			
				<td><div class="imagebutton" id="vB_Editor_001_cmd_insertorderedlist"><img src="images/styles/visualdepth/editor/insertorderedlist.gif" width="21" height="20" alt="Ordered List" /></div></td>
				<td><div class="imagebutton" id="vB_Editor_001_cmd_insertunorderedlist"><img src="images/styles/visualdepth/editor/insertunorderedlist.gif" width="21" height="20" alt="Unordered List" /></div></td>

			
			
				
				<td><div class="imagebutton" id="vB_Editor_001_cmd_outdent"><img src="images/styles/visualdepth/editor/outdent.gif" width="21" height="20" alt="Decrease Indent" /></div></td>
				<td><div class="imagebutton" id="vB_Editor_001_cmd_indent"><img src="images/styles/visualdepth/editor/indent.gif" width="21" height="20" alt="Increase Indent" /></div></td>
				
			
			
				<td><img src="images/styles/visualdepth/editor/separator.gif" width="6" height="20" alt="" /></td>
				
					<td><div class="imagebutton" id="vB_Editor_001_cmd_createlink"><img src="images/styles/visualdepth/editor/createlink.gif" width="21" height="20" alt="Insert Link" /></div></td>
					<td><div class="imagebutton" id="vB_Editor_001_cmd_unlink"><img src="images/styles/visualdepth/editor/unlink.gif" width="21" height="20" alt="Remove Link" /></div></td>
					<td><div class="imagebutton" id="vB_Editor_001_cmd_email"><img src="images/styles/visualdepth/editor/email.gif" width="21" height="20" alt="Insert Email Link" /></div></td>
				
				
					<td><div class="imagebutton" id="vB_Editor_001_cmd_insertimage"><img src="images/styles/visualdepth/editor/insertimage.gif" width="21" height="20" alt="Insert Image" /></div></td>
				
			
			
				<td><img src="images/styles/visualdepth/editor/separator.gif" width="6" height="20" alt="" /></td>
				<td><div class="imagebutton" id="vB_Editor_001_cmd_wrap0_quote"><img src="images/styles/visualdepth/editor/quote.gif" width="21" height="20" alt="Wrap QUOTE tags around selected text" /></div></td>

			
			
				<td><img src="images/styles/visualdepth/editor/separator.gif" width="6" height="20" alt="" /></td>				
				
					<td><div class="imagebutton" id="vB_Editor_001_cmd_wrap0_code"><img src="images/styles/visualdepth/editor/code.gif" width="21" height="20" alt="Wrap CODE tags around selected text" /></div></td>
				
				
					<td><div class="imagebutton" id="vB_Editor_001_cmd_wrap0_html"><img src="images/styles/visualdepth/editor/html.gif"  width="21" height="20" alt="Wrap HTML tags around selected text" /></div></td>
				
				
					<td><div class="imagebutton" id="vB_Editor_001_cmd_wrap0_php"><img src="images/styles/visualdepth/editor/php.gif" width="21" height="20" alt="Wrap PHP tags around selected text" /></div></td>
				
			
			
			</tr>
			</table>
Not sure if this is any help. Did a search for "editor_css" and nothing came up.
Reply With Quote
  #18  
Old 03-24-2011, 04:14 PM
BirdOPrey5's Avatar
BirdOPrey5 BirdOPrey5 is offline
Senior Member
 
Join Date: Jun 2008
Location: New York
Posts: 10,610
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

OK lets try this... in your headinclude template...

Directly above the line:

Code:
<!-- / CSS Stylesheet -->
Do you have:
Code:
<if condition="$show['editor_css']">
$editor_css
</if>
If not, add that code to your headinclude template.
Reply With Quote
  #19  
Old 03-24-2011, 04:55 PM
SVTCobraLTD SVTCobraLTD is offline
 
Join Date: Jul 2007
Location: PA
Posts: 841
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That was it!! Thank you very much for all your efforts and assistance. You were a huge help.
Reply With Quote
  #20  
Old 03-24-2011, 05:48 PM
BirdOPrey5's Avatar
BirdOPrey5 BirdOPrey5 is offline
Senior Member
 
Join Date: Jun 2008
Location: New York
Posts: 10,610
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

:up: great.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 08:53 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04593 seconds
  • Memory Usage 2,301KB
  • Queries Executed 12 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (4)bbcode_code
  • (1)bbcode_html
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete