contact form and guestbook problems

Creating and modifying plugins.
Post Reply
creatives
Posts: 3
Joined: Tue Oct 31, 2006 6:58 pm

contact form and guestbook problems

Post 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?
d_cee
Regular
Posts: 603
Joined: Wed Jan 18, 2006 6:32 pm
Location: UK
Contact:

Post 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
creatives
Posts: 3
Joined: Tue Oct 31, 2006 6:58 pm

Post 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.
Post Reply