Search…

X3 Photo Gallery Support Forums

Search…
 
delkro
Topic Author
Posts: 14
Joined: 03 Jan 2010, 00:22

Font size in contact form

03 May 2011, 17:14

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
 
User avatar
Martin
Experienced
Posts: 651
Joined: 30 Jan 2011, 23:24

Re: Font size in contact form

03 May 2011, 23:29

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;
}
 
delkro
Topic Author
Posts: 14
Joined: 03 Jan 2010, 00:22

Re: Font size in contact form

04 May 2011, 02:38

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 :(
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: Font size in contact form

04 May 2011, 03:04

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.
 
delkro
Topic Author
Posts: 14
Joined: 03 Jan 2010, 00:22

Re: Font size in contact form

04 May 2011, 04:54

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:
 
User avatar
Martin
Experienced
Posts: 651
Joined: 30 Jan 2011, 23:24

Re: Font size in contact form

04 May 2011, 05:05

delkro wrote:I become crazy.. :mrgreen:
Maybe clearing the cache :?:
 
delkro
Topic Author
Posts: 14
Joined: 03 Jan 2010, 00:22

Re: Font size in contact form

04 May 2011, 05:17

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
 
User avatar
Martin
Experienced
Posts: 651
Joined: 30 Jan 2011, 23:24

Re: Font size in contact form

04 May 2011, 06:56

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
 
delkro
Topic Author
Posts: 14
Joined: 03 Jan 2010, 00:22

Re: Font size in contact form

04 May 2011, 07:21

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:
 
delkro
Topic Author
Posts: 14
Joined: 03 Jan 2010, 00:22

Re: Font size in contact form

04 May 2011, 07:45

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 ?
 
User avatar
Martin
Experienced
Posts: 651
Joined: 30 Jan 2011, 23:24

Re: Font size in contact form

04 May 2011, 12:30

delkro wrote:Can any one confirm that the contact form is ok ?
Nope... still small here...
Tested in IE8, Firefox and Chrome....
 
delkro
Topic Author
Posts: 14
Joined: 03 Jan 2010, 00:22

Re: Font size in contact form

04 May 2011, 13:11

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 :)
 
User avatar
Martin
Experienced
Posts: 651
Joined: 30 Jan 2011, 23:24

Re: Font size in contact form

04 May 2011, 13:30

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...
 
User avatar
Martin
Experienced
Posts: 651
Joined: 30 Jan 2011, 23:24

Re: Font size in contact form

04 May 2011, 23:32

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.
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: Font size in contact form

05 May 2011, 06:09

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.