Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions

Reply
 
Thread Tools Display Modes
  #1  
Old 01-26-2006, 02:50 PM
CAMS's Avatar
CAMS CAMS is offline
 
Join Date: Jan 2006
Location: Edinburgh, Scotland
Posts: 145
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default editor border

just a quick question is ther anyway to change the colour of the borders shown in the pic below or get rid of them...

i know you can do it in vbulletin_editor.css but that relates to all styles on the forum.. i want to change it for just 1 style

would be greatful if anyone can tell me how todo it

thanks
chris

cmon outa a crap load of users online noone knows if it can be done without havin to edit the vbulletin_editor.css and effecting all the other styles installed?


Attached Images
File Type: jpg borders.jpg (159.0 KB, 0 views)
Reply With Quote
  #2  
Old 01-26-2006, 07:02 PM
davidw's Avatar
davidw davidw is offline
 
Join Date: Jul 2005
Location: Arkansas
Posts: 2,815
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The second thing in your picture is a fieldset tag. I'll have to check which file this is in (or template) as I don't know, but changing border=1 to border=0 will fix the top part and removing the <fieldset> tag will take out the bottom part. Let me look.
Reply With Quote
  #3  
Old 01-26-2006, 07:14 PM
S@NL - BlackBik's Avatar
S@NL - BlackBik S@NL - BlackBik is offline
 
Join Date: Jul 2004
Location: Netherlands
Posts: 307
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I think you'll have to change the <legend> style in your stylesettings.

Nope, sorry, that's not it......

But it might be in the Additional CSS Definitions.
I see a "fieldset" setting there.
Didn't try it though.
Reply With Quote
  #4  
Old 01-26-2006, 08:38 PM
davidw's Avatar
davidw davidw is offline
 
Join Date: Jul 2005
Location: Arkansas
Posts: 2,815
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Guessing here -
Go to Admincp / Style Manager / yourstyle / Post Icon Templates / posticons

Find and remove:
<fieldset class="fieldset" style="margin:10px 0px 0px 0px">
<legend>$vbphrase[post_icons]</legend>

Find and remove:
</fieldset>

Go to Admincp / Style Manager / yourstyle / Editor Templates / editor_clientscript

Find after <!-- EDITOR STYLES -->:
.vBulletin_editor {
background: {$istyles[pi_button_normal][0]};
padding: $stylevar[cellpadding]px;
}

Change $stylevar[cellpadding] to 0

Let me know if this works.

Edit: Wrote wrong template down.
Edit: Added
Reply With Quote
  #5  
Old 01-26-2006, 08:42 PM
CAMS's Avatar
CAMS CAMS is offline
 
Join Date: Jan 2006
Location: Edinburgh, Scotland
Posts: 145
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by S@NL - BlackBik
I think you'll have to change the <legend> style in your stylesettings.

Nope, sorry, that's not it......

But it might be in the Additional CSS Definitions.
I see a "fieldset" setting there.
Didn't try it though.
I added

Code:
.fieldset { border: 0px; }
to the Additional CSS Definitions and that done the trick for the legend part

but the top border on the editor is still ther

i tryed taken

Code:
/* the container for the editor */
.vBulletin_editor
{
	border: 0px none;
}

/* the container for all the edit controls */
#controlbar, .controlbar
{
	padding: 2px;
}

/* the WYSIWYG edit area itself */
#htmlbox
{
	border: 1px inset;
	font: 10pt verdana;
	overflow: auto;
}
from the vbulletin_editor.css and putting it in Additional CSS Definitions but it doesnt change a thing

anyone got any ideas how to get rid of the thick whiteish border around the posting part without it effecting every style installed?

this only problem i need to sort and the styles finnished.. so ya can imagine my frustration with this lol
Reply With Quote
  #6  
Old 01-26-2006, 08:49 PM
davidw's Avatar
davidw davidw is offline
 
Join Date: Jul 2005
Location: Arkansas
Posts: 2,815
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

See my edited post above.
Reply With Quote
  #7  
Old 01-26-2006, 08:54 PM
CAMS's Avatar
CAMS CAMS is offline
 
Join Date: Jan 2006
Location: Edinburgh, Scotland
Posts: 145
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by christianb
See my edited post above.
nope it never worked mate but u led me to the part i needed

i added

Code:
border:0px;
just below wer u said to change the padding and that sorted it

THANK YOU mate lol was getting so frustrated withit
Reply With Quote
  #8  
Old 01-26-2006, 08:55 PM
S@NL - BlackBik's Avatar
S@NL - BlackBik S@NL - BlackBik is offline
 
Join Date: Jul 2004
Location: Netherlands
Posts: 307
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

christianb, I'm afraid editing the templates will remove the borders in all styles and that's not what he wants
Reply With Quote
  #9  
Old 01-26-2006, 08:59 PM
CAMS's Avatar
CAMS CAMS is offline
 
Join Date: Jan 2006
Location: Edinburgh, Scotland
Posts: 145
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by S@NL - BlackBik
christianb, I'm afraid editing the templates will remove the borders in all styles and that's not what he wants
no no .. the template he asked me to edit is style pesific (SP?) so changes only apply to style ur working on

or am i tripping here? lol
Reply With Quote
  #10  
Old 01-26-2006, 09:03 PM
S@NL - BlackBik's Avatar
S@NL - BlackBik S@NL - BlackBik is offline
 
Join Date: Jul 2004
Location: Netherlands
Posts: 307
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok, than give it a go
Reply With Quote
Reply

Thread Tools
Display Modes

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 07:21 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.07377 seconds
  • Memory Usage 2,274KB
  • 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
  • (3)bbcode_code
  • (3)bbcode_quote
  • (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
  • (1)postbit_attachment
  • (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_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete