Search…

X3 Photo Gallery Support Forums

Search…
 
WizardFusion
Topic Author
Posts: 13
Joined: 06 Feb 2009, 17:17

customise comment form

02 Mar 2011, 09:31

My image gallery is looking almost perfect now, and I just need to change a few little things.

One of them is the colours for the comment form. They don't go with my theme colours.
I have tried adding various entries to the CSS, but this screws up the CSS for the whole site.

Thanks
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: customise comment form

02 Mar 2011, 09:55

I am not sure what this can be unless I actually see your gallery and CSS when it is screwed. The comments input fields are a bit special. This is the CSS:
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 onyl supports a single font value. Make sure its a font that is globally supported*/
	color: 0xFFFFFF;
	font-size: 15;
	font-family: Arial;
}
.textpage_forminputback {
	/* This specific class only supports the color style. Please use 0x color formatting instead of # */
	color: 0x333333;
}
It is important that you read the comments, and that you add any colors with 0x in front ...
 
WizardFusion
Topic Author
Posts: 13
Joined: 06 Feb 2009, 17:17

Re: customise comment form

02 Mar 2011, 10:04

Ah, I missed the ".textpage_forminput" when looking though the CSS.
Now that you pointed it out to me, I remember looking at it before.

Thank you.