Hi,
First of all: Great plugin!
Question: How can I reduce the amount of white-space between fields.
I basically want to make the entire guestbook page very compact. I have modified the CSS through the admin interface to include padding: 0px everywhere ;-) but it doesn't seem to help. Theme: Twenty Ten Weaver.
Thank you!
DJ
Hi DJF3
Take a look on 'dmsguestbook/template/form/default.tpl'
Greetings,
Dani
So I looked at the default.tpl
It contains 1 interesting line:
css_form_textfieldspace = define space between each text fields
In the DMSGuestbook admin I have changed css_form_textfieldspace to:
text-align:left;
padding:0px 0px 0px 0px;
margin:0px 0px;
This should decrease the space between the text fields, right?
DJ
Yes, except your theme css will overwrite this setting.
Greetings,
Dani
Very good! My theme is Twenty Ten Weaver..
To fix this I went to Twenty Ten Main Options, Content Area and added the following CSS to the Content Text item:
css_form_textfieldspace {text-align:left; padding:4px 0px; margin:4px 0px;}
Cheers!
DJ