Page 1 of 1

customise comment form

Posted: 02 Mar 2011, 09:31
by WizardFusion
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

Re: customise comment form

Posted: 02 Mar 2011, 09:55
by mjau-mjau
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 ...

Re: customise comment form

Posted: 02 Mar 2011, 10:04
by WizardFusion
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.