Page 1 of 2

Font size in contact form

Posted: 03 May 2011, 17:14
by delkro
Hi,
The font size of the contact form is very very very small !!!
I can't fix the problem, even in the CSS Style sheet :

.textpage_forminput {
/* You need to specify all required styles in this class because they are not inherited from the main textpage class because of restrictions with input fields in flash.
Please use 0x color formatting instead of #
font-family onyl supports a single font value. Make sure its a font that is globally supported*/
color: 0xFFFFFF;
font-size: 12px;
font-family: arial;
}

Helllpp :)
Thanks in advance

Re: Font size in contact form

Posted: 03 May 2011, 23:29
by Martin
delkro wrote:The font size of the contact form is very very very small !!!
.textpage_forminput { ...... }
The .textpage_forminput changes the textual input-fields.
For modifying the text above the input-fields use:
Code
.textpage_form {
	font-size: 25px;
}

Re: Font size in contact form

Posted: 04 May 2011, 02:38
by delkro
Thanks for your help.. but, I was exactly talking about the input-fields of the contact form, the fields were you have to leave your name and mail..
I can't find the solution, I'm on this problem for hours :(

Re: Font size in contact form

Posted: 04 May 2011, 03:04
by mjau-mjau
In your CSS, you have this:
Code
.textpage_forminput {
	/* You need to specify all required styles in this class because they are not inherited from the main textpage class because of restrictions with input fields in flash. 
	Please use 0x color formatting instead of #  
	font-family only supports a single font value. Make sure its a font that is globally supported*/
	color: 0xFFFFFF;
	font-size: 15;
	font-family: Arial;
}
This is where you set the size for the font for the input fields.

Re: Font size in contact form

Posted: 04 May 2011, 04:54
by delkro
Hi,
@ mjau-mjau

I think I'm ok with this section of the CSS Style Sheet..
It's exactly the problem.
If you look at my first post, I don't see any mistake :(
I become crazy.. :mrgreen:

Re: Font size in contact form

Posted: 04 May 2011, 05:05
by Martin
delkro wrote:I become crazy.. :mrgreen:
Maybe clearing the cache :?:

Re: Font size in contact form

Posted: 04 May 2011, 05:17
by delkro
mabro wrote:
delkro wrote:I become crazy.. :mrgreen:
Maybe clearing the cache :?:
Did it a dozen of dozen times :mrgreen:

I've even tried on 4 others pc..

You can see the problem at : http://www.pierreduquoc.fr at the contact page

Re: Font size in contact form

Posted: 04 May 2011, 06:56
by Martin
delkro wrote:You can see the problem at : http://www.pierreduquoc.fr at the contact page
Wow... that IS SMALL :D

I like your images, though.... very creative

Re: Font size in contact form

Posted: 04 May 2011, 07:21
by delkro
mabro wrote:
delkro wrote:You can see the problem at : http://www.pierreduquoc.fr at the contact page
Wow... that IS SMALL :D

I like your images, though.... very creative
Thanks !
Yes, it's SMALL.. almost as I am in my picture :mrgreen:

Re: Font size in contact form

Posted: 04 May 2011, 07:45
by delkro
I'm really get mad !!!
It seems that all is ok now ! I did not change anything in the CSS Style sheet...
Can any one confirm that the contact form is ok ?

Re: Font size in contact form

Posted: 04 May 2011, 12:30
by Martin
delkro wrote:Can any one confirm that the contact form is ok ?
Nope... still small here...
Tested in IE8, Firefox and Chrome....

Re: Font size in contact form

Posted: 04 May 2011, 13:11
by delkro
I GOT IT !!!!
:mrgreen:
I modified the lines :

font-size: 12px;
font-family: arial;

in :

font-size: 12;
font-family: Arial;

And now it seems to work.. I guess :)

Re: Font size in contact form

Posted: 04 May 2011, 13:30
by Martin
delkro wrote:I GOT IT !!!! ... And now it seems to work.. I guess :)
YES.... I can read it now without a microscope...

strange... I tested this variation, but it seemed to have no effect...

Re: Font size in contact form

Posted: 04 May 2011, 23:32
by Martin
delkro wrote:And now it seems to work.. I guess :)
Yes, you're right.
At first it was allright with me (font-size: 12;), but I changed it to 12px and only later (perhaps due to not completely clearing the cache) I also saw a microscopic font.
I now changed it back and it's OK again.

Re: Font size in contact form

Posted: 05 May 2011, 06:09
by mjau-mjau
Can confirm that it seems to work fine now. Snapshot: https://d.pr/qOXA

May have been the missing "px"/browser, or something with cache, or a combination. The INPUT fields are a bit special when it comes to CSS, because the styles need to manually parsed in Imagevue and applied in a different way.