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

Reply
 
Thread Tools Display Modes
  #1  
Old 05-23-2014, 05:46 PM
409industries 409industries is offline
 
Join Date: Jan 2008
Posts: 63
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Gray border around ALL editor windows?

Hi-

How do I get rid of this gray border that is around all my editor windows site wide? (Visitor messages, Quick Reply, Reply to Thread (Advanced), Post new thread) See attached image to see what i'm referring to.

It doesn't fit well in my color scheme as you can see.

Been searching through code all over the place trying to find what controls this option? StyleVars under Editor don't seem to affect this narrow border.

Thanks for the help!
Attached Images
File Type: jpg border_around_quickreply.jpg (88.4 KB, 0 views)
Reply With Quote
  #2  
Old 05-24-2014, 08:17 PM
tbworld tbworld is offline
 
Join Date: Oct 2008
Posts: 2,126
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by 409industries View Post
Hi-

How do I get rid of this gray border that is around all my editor windows site wide? (Visitor messages, Quick Reply, Reply to Thread (Advanced), Post new thread) See attached image to see what i'm referring to.

It doesn't fit well in my color scheme as you can see.

Been searching through code all over the place trying to find what controls this option? StyleVars under Editor don't seem to affect this narrow border.

Thanks for the help!
See "mainui.css" or add to additional.css with using "!important"
Code:
span.cke_skin_kama {
  border: 1px solid red !important;
  border-radius: 5px;
  padding: 5px;
}
Let me know if it works.
Reply With Quote
Благодарность от:
409industries
  #3  
Old 05-24-2014, 11:33 PM
409industries 409industries is offline
 
Join Date: Jan 2008
Posts: 63
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

tbworld.

Thank you for that. Put the code in additional.css and it worked like a charm! I can finally stop beating my head against the wall trying to find the code that controls that. Not too familiar with span.cke_skin_kama
Reply With Quote
  #4  
Old 05-24-2014, 11:39 PM
tbworld tbworld is offline
 
Join Date: Oct 2008
Posts: 2,126
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That particular CSS is a bit elusive if you do not know where to look. Glad to help.
Reply With Quote
Благодарность от:
CAG CheechDogg
  #5  
Old 05-27-2014, 08:05 PM
409industries 409industries is offline
 
Join Date: Jan 2008
Posts: 63
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by tbworld View Post
That particular CSS is a bit elusive if you do not know where to look. Glad to help.
Thank you very much! Indeed, I don't think I would have guessed where that was.

Literally the last item i am trying to find is actually quite similar to my opening post. There is a gray horizontal line on the user profile page under "Visitor Messages". I can't seem to find out what is causing this to show... and want to get rid of it / change the color somehow.

Any idea where i can find this code?

I suspect .memberprofiletabunder maybe in member.css?

(I attached a quick screenshot of anyone wants to take a quick look)

Thank you!!!
Attached Images
File Type: jpg top_gray_line_visitor_messa.jpg (106.0 KB, 0 views)
Reply With Quote
  #6  
Old 05-28-2014, 01:56 AM
tbworld tbworld is offline
 
Join Date: Oct 2008
Posts: 2,126
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by 409industries View Post
Literally the last item i am trying to find is actually quite similar to my opening post. There is a gray horizontal line on the user profile page under "Visitor Messages". I can't seem to find out what is causing this to show... and want to get rid of it / change the color somehow.
Add to your additional.css template:
Code:
.userprof_editor {
    border-width: 1px 0px 0px; /* Maybe just disable, set to 0px; */
    border-style: solid;
    border-color: red;  /* Change Color */
}
Reply With Quote
  #7  
Old 05-28-2014, 05:01 PM
409industries 409industries is offline
 
Join Date: Jan 2008
Posts: 63
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nice. thanks tbworld. I ended up going with the 0px 0px 0px to remove this line completely.

The spot where the red line appeared after editing the .userprof_editor line was right below this gap (see attached).

I was able to remove a wide strip beneath the tabs that was taking up a bunch of space by editing the userprofiles.css code here:

HTML Code:
.memberprofiletabunder {
	background-color: #2E3539;
	background-image: {vb:raw module_background_image};
	background-repeat: {vb:raw module_background_repeat};
But it left the black gap below it as indicated in the red rectangle. If I can fill this with the background color #2E3539...
Attached Images
File Type: jpg top_black_line_visitor_msg.jpg (111.3 KB, 0 views)
Reply With Quote
  #8  
Old 05-28-2014, 05:32 PM
tbworld tbworld is offline
 
Join Date: Oct 2008
Posts: 2,126
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

What I have surmised from your post, try the following:

Code:
.userprof_editor { 
    border-width: 1px 0px 0px; 
    border-style: solid;
    border-color: #2E3539; 
}
Above code: Leaves the border in the original post and changes the border color to your desired #2E3539.

The problem assumably was due to the boarder being enabled in an associated class, using an inherited color -- it is only a guess. I would need a link to your page to be sure.
Reply With Quote
  #9  
Old 05-28-2014, 07:01 PM
409industries 409industries is offline
 
Join Date: Jan 2008
Posts: 63
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I made the changes but i think this line is above where the .userprof_editor border-color #2E3539; code has effect.

The visitor message tab is not available to the public to see, so here's a temp account to take a look (if you have time).

user: vb_temp
pass: p@ssw0rd123!

http://www.dirtyimpreza.com/forums/m...itor_messaging

Let me know what you think! Thanks for the effort!
Reply With Quote
  #10  
Old 05-28-2014, 07:34 PM
tbworld tbworld is offline
 
Join Date: Oct 2008
Posts: 2,126
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If you are going to keep the tab bar (.memberprofiletabunder) then I would add back the completed border in your brown color.

Code:
.userprof_editor {      
   border-width: 1px 0px 0px;      
   border-color: #8F3F1F;
}
Or are you looking to get rid of the tab bar?
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 02:51 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.05584 seconds
  • Memory Usage 2,292KB
  • Queries Executed 14 (?)
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
  • (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
  • (2)pagenav_pagelink
  • (10)post_thanks_box
  • (2)post_thanks_box_bit
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (2)post_thanks_postbit
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (3)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_postinfo_query
  • fetch_postinfo
  • 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
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • 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
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete