Page 1 of 1

contact form and guestbook problems

Posted: Tue Oct 31, 2006 7:15 pm
by creatives
Hi,
I have just installed serendipity, and I must say that I am really impressed.

I have having a couple of problems with the contact form and the guestbook.
I am using the leaf template.

The problem I am having is that the forms in both the contact form and the guestbook are too big for the page (see image):
Image

I should add that this problem only seems to appear in firefox.

I'm, not sure what the problem is.
can anyone help?

Posted: Tue Oct 31, 2006 7:50 pm
by d_cee
Hi Creatives

if you take a look at your templates/leaf/style.css and find this section

Code: Select all

td.serendipity_commentsValue input,
td.serendipity_commentsValue select,
td.serendipity_commentsValue textarea {
    font-size: 12px;
    padding: 2px;
    width: 400px;
}
then change the width to

Code: Select all

width: 90%;

that should do it

HTH

Dave

Posted: Tue Oct 31, 2006 7:58 pm
by creatives
d_cee wrote:Hi Creatives

if you take a look at your templates/leaf/style.css and find this section

Code: Select all

td.serendipity_commentsValue input,
td.serendipity_commentsValue select,
td.serendipity_commentsValue textarea {
    font-size: 12px;
    padding: 2px;
    width: 400px;
}
then change the width to

Code: Select all

width: 90%;

that should do it

HTH

Dave
Thanks dave worked a treat.