vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Template Modifications (https://vborg.vbsupport.ru/forumdisplay.php?f=229)
-   -   Miscellaneous Hacks - Change the fieldset color (https://vborg.vbsupport.ru/showthread.php?t=171096)

Brian30fl 02-20-2008 10:00 PM

Change the fieldset color
 
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 :):)

Magnumutz 02-21-2008 05:43 PM

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.

SwollenCranium 02-21-2008 08:17 PM

Quote:

Originally Posted by Magnumutz (Post 1448247)
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'.

Brian30fl 02-21-2008 08:50 PM

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 (Post 1448326)
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.

NeuroLancer 02-21-2008 09:54 PM

Quote:

Originally Posted by Magnumutz (Post 1448247)
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 :)

SEOvB 02-22-2008 08:33 PM

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

Brian30fl 02-23-2008 10:39 AM

Quote:

Originally Posted by FRDS (Post 1448965)
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 :)

theparentpack 05-12-2008 10:00 AM

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!

Brian30fl 05-12-2008 04:06 PM

your very welcome

echo2kk5 05-12-2008 05:44 PM

**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.

Brian30fl 05-13-2008 11:56 AM

hmm i will have to test that. don think i have tested on ie. working on firefox though i will look into it tomorrow morning hectic work schedule just got in from a 15 hour shift. in the meantime try changing it to like 7-10 see if there is any change.


Edit:
im sorry forgot to mention the -moz extension is for mozilla browsers meaning netscape and firefox. here are some css changes to support differant browswers


Code:

-webkit-border-radius: 10px; /* Safari prototype */
-moz-border-radius: 10px; /* Gecko browsers */ meaning netscape and firefox or anything that uses the mozilla engine
border-radius: 10px; /* Everything else - such as ie6,ie7 */

let me know how it works.

fourat 05-17-2008 04:02 AM

thank you install

Brian30fl 05-17-2008 11:41 AM

you are very welcome

nothing4me 06-12-2008 03:01 AM

Quote:

Originally Posted by FRDS (Post 1448965)
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

I have to say... That's beautiful.

Brian30fl 06-12-2008 07:43 PM

yeah FRDS is pretty good and over the time here i picked up a few things from him >.<

K4GAP 06-13-2008 03:35 PM

Quote:

Originally Posted by Magnumutz (Post 1448247)
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.

This response is why a lot of folk don't ask questions.

lostgirl815 11-04-2008 10:38 PM

Thanks so much, I've been going bonkers trying to figure out how to change this.

MundoVirtual 11-04-2008 10:47 PM

Obrigado pelo Mod

Brian30fl 11-23-2008 02:58 AM

Quote:

Originally Posted by lostgirl815 (Post 1659615)
Thanks so much, I've been going bonkers trying to figure out how to change this.

Yeah that is the reason i posted how to do this. can be a pain finding out how.

Adam21 11-23-2008 03:34 AM

Good job though its just css.The other good thing is people might come forward and share what they're using on their own forums too like FRDS,beautiful work too.

Rgds

mesdar 12-12-2008 03:57 AM

thank u Brian30fl

install

chick 05-13-2009 11:51 PM

I know this is way late but at least it will bump it up to help others.

Thank you so, so much. I have no idea how to do something like this and I am very glad I found it.

Dingo14 05-17-2009 02:25 AM

thanks for this nice one

powersilie 05-18-2009 09:36 AM

Thanks a lot, it looks great!!

Karin

powersilie 05-20-2009 05:25 AM

Quote:

Originally Posted by Brian30fl (Post 1518195)
Edit:
im sorry forgot to mention the -moz extension is for mozilla browsers meaning netscape and firefox. here are some css changes to support differant browswers



-webkit-border-radius: 10px; /* Safari prototype */
-moz-border-radius: 10px; /* Gecko browsers */ meaning netscape and firefox or anything that uses the mozilla engine
border-radius: 10px; /* Everything else - such as ie6,ie7 */


let me know how it works.

Hallo!

You are right, in FF it works great, but not in IE. I'm sorry, but your code doesn't work for me in IE.
Some more ideas how we can do it?

thanks and bye
Karin

KevinGupta 08-29-2009 11:00 AM

Quote:

Originally Posted by Magnumutz (Post 1448247)
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.

LOL I didn't know this man..?
Because you are a designer doesn't really mean that you know everything as well :)
This guy tried and posted something to helps us out :D

Cheers ..


All times are GMT. The time now is 04:54 PM.

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.01377 seconds
  • Memory Usage 1,774KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_code_printable
  • (11)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (26)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete