Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Just need to change the text color in a form

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #285254
    supernooby
    Participant

    This may be the easiest question ever to answer, but its hard for me. I just need the form body text another colour. I can change the colour of the text in the contact form, but it displays errors on the form.

    Ive tried lots off things. but cant do it.

    I want gold text? I think i must make a change here somewhere in the .html file, but text colour change should be in the .css file right (vender.css)? but that seems a mess and i cant work out where to change the body text colour.

    body{
    background-color: transparent;
    }
    body color: yellow
    h3 { color:#ffd700 }

    .jf-form{
    margin-top: 28px;
    }

    .jf-form > form{
    margin-bottom: 32px;
    }

    .jf-option-box{
    display: none;
    margin-left: 8px;
    }

    .jf-hide{
    display: none;
    }

    .jf-disabled {
    background-color: #eeeeee;
    opacity: 0.6;
    pointer-events: none;
    }

    /*
    overwrite bootstrap default margin-left, because the

    div.form-group{
    padding: 8px 8px 4px 8px;
    }

    #285258
    Paulie_D
    Member

    No much we can tell from a raw chunk of CSS.

    I’d suggest you inspect the element using the Developer Tools that come with your browser (press F12).

    This will show you the rules that apply to the element and even what line in the CSS file applies.

    Then change as appropriate.

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘CSS’ is closed to new topics and replies.