The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

CSS for Form, Fieldset, Label..?

4 posters

Go down

Solved CSS for Form, Fieldset, Label..?

Post by Munchaab August 23rd 2022, 8:38 am

1st - the forum I'm working on:
https://beyond-the-fringe.forumotion.com/f1-general-discussion

I don't know if I never knew this or the years since using CSS the knowledge has left me so any help welcome...

I'm looking to change the text color in the .action-box etc under the category list (.foumbg announcement) - problem is I don't remember the syntax in CSS for text that is:

a) a label in a fieldset in a form.

b) does the next div, .info_open which has h3 text following a style tag need a separate line or different treatment?

I ask as I can't get any of the text below the forum and above the Legend (.clearfix) to change color...

If you go to the link, scroll down, click the black background and drag down you will see the text is hidden because it's still black not blue - I have tried many ways but I'm an old dog now and can't even remember old tricks - LOL...

Rather than straining my brain further I decided to admit defeat and ask people who can do this stuff in their sleep!

Thanks for any help.



Last edited by Munchaab on August 23rd 2022, 2:31 pm; edited 1 time in total
Munchaab
Munchaab
New Member

Posts : 13
Reputation : 1
Language : English

https://beyond-the-fringe.forumotion.com/

Back to top Go down

Solved Re: CSS for Form, Fieldset, Label..?

Post by Munchaab August 23rd 2022, 10:06 am

Seems I even got the Legend section wrong - changing .clearfix also change all the main text in the posts etc..

Had to delete that so all the text under the forum is now black again...

Munchaab
Munchaab
New Member

Posts : 13
Reputation : 1
Language : English

https://beyond-the-fringe.forumotion.com/

Back to top Go down

Solved Re: CSS for Form, Fieldset, Label..?

Post by Razor12345 August 23rd 2022, 2:01 pm

Good afternoon!
Are these all the items you want to repaint?

CSS for Form, Fieldset, Label..? C766652806214ed0983a1785b2e693c8

AP - Display - Color&CSS - CSS Stylesheet

Code:
.ul-icons {
  color: red;
}

#info_open {
  color: red;
}

.sort-form {
    color: red;
}

.action-box #sort-box .sort-form label {
color: red;
}

.action-box .vf_jumpbox label {
color: red;
}

red - change to a color that suits you

The text, which is marked in blue, cannot be changed without change template. There's no class applied to it + it's in the template by itself.


CSS for Form, Fieldset, Label..? Screen51
Razor12345
Razor12345
Support Moderator
Support Moderator

Male Posts : 1574
Reputation : 266
Language : Ukr, Rus, Eng
Location : Ukraine

Munchaab likes this post

Back to top Go down

Solved Re: CSS for Form, Fieldset, Label..?

Post by Ape August 23rd 2022, 2:09 pm

if the top one don't work you can always use this one

Code:
label {
  cursor: default;
  padding-right: 5px;
  color: #777171;
}
body {
  font-family: Verdana,Arial,Helvetica,sans-serif;
  color: #6c6767;
  font-size: 12px;
}

you can also look on the following part of your
ACP >> Display >> Pictures and Colors >> Colors

look for any text that is marked as black and change to the colour you want Wink

My advice is always look in this part before making the change to CSS files.


CSS for Form, Fieldset, Label..? Left1212CSS for Form, Fieldset, Label..? Center11CSS for Form, Fieldset, Label..? Right112
CSS for Form, Fieldset, Label..? Ape_b110
CSS for Form, Fieldset, Label..? Ape1010
Ape
Ape
Administrator
Administrator

Male Posts : 19310
Reputation : 2005
Language : fluent in dork / mumbojumbo & English haha

http://chatworld.forumotion.co.uk/

Back to top Go down

Solved Re: CSS for Form, Fieldset, Label..?

Post by Munchaab August 23rd 2022, 2:17 pm

Razor12345 wrote:Good afternoon!
Are these all the items you want to repaint?

CSS for Form, Fieldset, Label..? C766652806214ed0983a1785b2e693c8

AP - Display - Color&CSS - CSS Stylesheet

Code:
.ul-icons {
  color: red;
}

#info_open {
  color: red;
}

.sort-form {
    color: red;
}

.action-box #sort-box .sort-form label {
color: red;
}

.action-box .vf_jumpbox label {
color: red;
}

red - change to a color that suits you

The text, which is marked in blue, cannot be changed without change template. There's no class applied to it + it's in the template by itself.

Thanks - yeah that's got it - except the blue part you said needs template change - I can live with it for now at least...

Do they all have to be the same color or can I make the Legend text yellow?

Munchaab
Munchaab
New Member

Posts : 13
Reputation : 1
Language : English

https://beyond-the-fringe.forumotion.com/

Back to top Go down

Solved Re: CSS for Form, Fieldset, Label..?

Post by Munchaab August 23rd 2022, 2:23 pm

Ape wrote:if the top one don't work you can always use this one

Code:
label {
  cursor: default;
  padding-right: 5px;
  color: #777171;
}
body {
  font-family: Verdana,Arial,Helvetica,sans-serif;
  color: #6c6767;
  font-size: 12px;
}

you can also look on the following part of your
ACP >> Display >> Pictures and Colors >> Colors

look for any text that is marked as black and change to the colour you want Wink

My advice is always look in this part before making the change to CSS files.


Thanks - but unfortunately the ACP colors section is so limited it does not cover text in different areas, or even all the background areas - e'g' I had to change the background color for the profile options section with CSS as it can't be changed in the ACP...

I'll copy that code over in case I hit any other snags - -so thank you...

Munchaab
Munchaab
New Member

Posts : 13
Reputation : 1
Language : English

https://beyond-the-fringe.forumotion.com/

Back to top Go down

Solved Re: CSS for Form, Fieldset, Label..?

Post by Munchaab August 23rd 2022, 2:30 pm

OK got it - UL was the one I wanted yellow and it works perfectly...

Thank you very much - marking as SOLVED.
Munchaab
Munchaab
New Member

Posts : 13
Reputation : 1
Language : English

https://beyond-the-fringe.forumotion.com/

Back to top Go down

Solved Re: CSS for Form, Fieldset, Label..?

Post by skouliki August 23rd 2022, 2:32 pm

Problem solved & topic archived.
Please read our forum rules: ESF General Rules
skouliki
skouliki
Manager
Manager

Female Posts : 15291
Reputation : 1705
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum