Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.7 > vBulletin 3.7 Template Modifications
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Change the fieldset color Details »»
Change the fieldset color
Version: 1.01, by Brian30fl Brian30fl is offline
Developer Last Online: Feb 2011 Show Printable Version Email this Page

Category: Miscellaneous Hacks - Version: 3.7.x Rating:
Released: 02-20-2008 Last Update: Never Installs: 20
Template Edits
Code Changes  
No support by the author.

Okay after doing some css studying i found out own to change the default grey color around the fieldset borders so here is the code enjoy!

Goto AdminCp>Style & Templates>Style Manager
Edit the style you use and goto main css and add code in additional css at the end.

Code:
fieldset{border:1px solid #343635;padding:5px;-moz-border-radius:0px}
also note i added some extra code, you can always change the solid to dotted to have a dotted fieldset border look also i added some additional coding if you give moz-border-radius: to like 5px it will give a rounded corner type look hope this helps

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #2  
Old 02-21-2008, 05:43 PM
Magnumutz's Avatar
Magnumutz Magnumutz is offline
 
Join Date: Feb 2006
Location: Romania
Posts: 731
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You have GOT to be kidding me man... it's BASIC CSS... this is nothing special at all...
Sorry to get you down like this, but... it's nothing.
Reply With Quote
  #3  
Old 02-21-2008, 08:17 PM
SwollenCranium's Avatar
SwollenCranium SwollenCranium is offline
 
Join Date: Oct 2007
Location: Raleigh, NC
Posts: 263
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Magnumutz View Post
You have GOT to be kidding me man... it's BASIC CSS... this is nothing special at all...
Sorry to get you down like this, but... it's nothing.

How about you go into the article section and give us all a class on Basic CSS then ?

Or you could continue to tell people like him that what he knows is 'nothing'.
Reply With Quote
  #4  
Old 02-21-2008, 08:50 PM
Brian30fl Brian30fl is offline
 
Join Date: Jun 2005
Posts: 57
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
You have GOT to be kidding me man... it's BASIC CSS... this is nothing special at all...
Sorry to get you down like this, but... it's nothing.

excuse me buddy but not a lot of people know this and this question has been asked over and over i simply wrote this to help people out. so if you dont got nothing nice to say dont post at all.

Quote:
Originally Posted by SwollenCranium View Post
How about you go into the article section and gives us all a class on Basic CSS then ?

Or you could continue to tell people like him that what he knows is 'nothing'.
thanks for the support bud.. im not not even going to argue with him.

on a last note Magnumutz since your a great designer or whatever do a better job on designs i seen your site and im not impressed

you got to realize there are people that come here other then your average vb coder like new members who dont know much about vb coding this was for them.
Reply With Quote
  #5  
Old 02-21-2008, 09:54 PM
NeuroLancer's Avatar
NeuroLancer NeuroLancer is offline
 
Join Date: Feb 2008
Location: Australia
Posts: 143
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Magnumutz View Post
You have GOT to be kidding me man... it's BASIC CSS... this is nothing special at all...
Sorry to get you down like this, but... it's nothing.
If you dont like it, dont use it. No need to put it down because it seems easy to you. You must consider not everyone has the same skill level, try to be understanding.

Thanks Brian30fl
Reply With Quote
  #6  
Old 02-22-2008, 08:33 PM
SEOvB's Avatar
SEOvB SEOvB is offline
 
Join Date: May 2007
Location: Indianapolis
Posts: 2,451
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Incase anyone wanted a little different filedset look, this is the code i've been using on our forums

Code:
fieldset{
     color: #000;
     border-left: 0px;
     border-right: 0px;
     border-bottom: 0px;
     padding:5px;
    -moz-border-radius:0px;
}
legend {
     color: #000;
}
And what it looks like:
Attachment 76274
Reply With Quote
  #7  
Old 02-23-2008, 10:39 AM
Brian30fl Brian30fl is offline
 
Join Date: Jun 2005
Posts: 57
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by FRDS View Post
Incase anyone wanted a little different filedset look, this is the code i've been using on our forums

Code:
fieldset{
     color: #000;
     border-left: 0px;
     border-right: 0px;
     border-bottom: 0px;
     padding:5px;
    -moz-border-radius:0px;
}
legend {
     color: #000;
}
And what it looks like:
Attachment 76274

not bad looks good
Reply With Quote
  #8  
Old 05-12-2008, 10:00 AM
theparentpack theparentpack is offline
 
Join Date: Dec 2007
Posts: 139
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I am just a Mom, who decided to start a couple of forums so I definitely would not have known this. Thanks so much, it really improved the look!
Reply With Quote
  #9  
Old 05-12-2008, 04:06 PM
Brian30fl Brian30fl is offline
 
Join Date: Jun 2005
Posts: 57
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

your very welcome
Reply With Quote
  #10  
Old 05-12-2008, 05:44 PM
echo2kk5 echo2kk5 is offline
 
Join Date: Dec 2004
Posts: 78
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

**Installed
Thanks for this..one thing though:
Quote:
if you give moz-border-radius: to like 5px it will give a rounded corner type look
I'm not seeing any change when changing that setting from 0 to 5 or anything, it stays square... I'm using IE7.
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 06:36 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.05704 seconds
  • Memory Usage 2,298KB
  • Queries Executed 24 (?)
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
  • (3)bbcode_code
  • (6)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (9)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