This forum is no longer open and is for reading/searching only.

Please use our new MachForm Community Forum instead.

MachForm Community Forums » MachForm 2

Change Font Color


  1. tnkjoseph
    Member

    How do i change the font color from black to white on the forum? I only want the labels to change and not the area where the uer enters text? THanks.

    Posted 15 years ago #
  2. tnkjoseph
    Member

    i am not technical so i need simple instructions on where to make the change in the css file. thanks in advance and sorry to ask a simple question.

    Posted 15 years ago #
  3. yuniar

    Search for this:

    #main_body label.description
    {
    	border:none;
    	color:#222;
    	display:block;
    	font-size:95%;
    	font-weight:700;
    	line-height:150%;
    	padding:0 0 1px;
    }


    and this:

    #main_body form li span label
    {
    	clear:both;
    	color:#444;
    	display:block;
    	font-size:9px;
    	line-height:9px;
    	margin:0;
    	padding-top:3px;
    }


    change the color property to white by using this code:

    color:#fff;


    MachForm Founder

    Posted 15 years ago #
  4. tnkjoseph
    Member

    Perfect. That worked great but not when I select the field to begin entering data it turns yellow which is fine but the font is also white. Yello background and white font is difficult to see. How can i change only the font color when the field turns yellow to black?

    Posted 15 years ago #
  5. yuniar

    I suggest to change the highlight color from yellow to something darker.
    Are you currently using black background?

    Search for this:

    #main_body form li.highlighted
    {
    	background-color:#fff7c0;
    }


    change the color to something darker, like this one perhaps:

    #main_body form li.highlighted
    {
    	background-color:#303030;
    }


    MachForm Founder

    Posted 15 years ago #

RSS feed for this topic

Reply