I want to resize the input field to the same width as the other fields. But in the commentform.tpl I can only find this:
commentform_replyTo
Where can I change the size?
commentform_replyTo
commentform_replyTo
|
http://www.wind-in-unseren-fluegeln.de
Benutzername: Serendipity
Passwort: Serendipity
Serendipity 1.3 und PHP 5.2.2
Editor: Notepad++
FTP: Filezilla
Hoster: Strato
http://www.wind-in-unseren-fluegeln.de
Benutzername: Serendipity
Passwort: Serendipity
Serendipity 1.3 und PHP 5.2.2
Editor: Notepad++
FTP: Filezilla
Hoster: Strato
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Re: commentform_replyTo
Hi!
You can use CSS to do that? Remember that the replyTo thing is a select, not an input field.
Regards,
Garvin
You can use CSS to do that? Remember that the replyTo thing is a select, not an input field.
Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Re: commentform_replyTo
Erm ... we're talking default template, right?TimBeam wrote:I want to resize the input field to the same width as the other fields. But in the commentform.tpl I can only find this:
commentform_replyTo
Where can I change the size?
Code: Select all
.serendipityCommentForm input {
width: <WHATEVER>;
}
YL
You are my heros!
All input fields have now the same width. But the "reply to" field is not affected?
Additionally I have resized the textarea with ".serendipityCommentForm textarea" but how can I change the "reply to", "checkboxes" and the "submit buttons".
.serendipityCommentForm submit {
width: <WHATEVER>;
}
does not work. And now it looks a little bit ugly.
Shall I make my own classes arround these other fileds?
All input fields have now the same width. But the "reply to" field is not affected?
Additionally I have resized the textarea with ".serendipityCommentForm textarea" but how can I change the "reply to", "checkboxes" and the "submit buttons".
.serendipityCommentForm submit {
width: <WHATEVER>;
}
does not work. And now it looks a little bit ugly.
Shall I make my own classes arround these other fileds?
|
http://www.wind-in-unseren-fluegeln.de
Benutzername: Serendipity
Passwort: Serendipity
Serendipity 1.3 und PHP 5.2.2
Editor: Notepad++
FTP: Filezilla
Hoster: Strato
http://www.wind-in-unseren-fluegeln.de
Benutzername: Serendipity
Passwort: Serendipity
Serendipity 1.3 und PHP 5.2.2
Editor: Notepad++
FTP: Filezilla
Hoster: Strato
TimBeam wrote:Additionally I have resize the textarea with ".serendipityCommentForm textarea" but how can I change the "reply to"
Code: Select all
#serendipity_replyTo { width: <BLAFASEL>; }TimBeam wrote:"checkboxes"
Code: Select all
#checkbox_remember,
#checkbox_subscribe { width: <BLAFASEL>; }That's the tricky one. Edit your commentform.tpl like this:TimBeam wrote:"submit buttons"
Code: Select all
<td><input type="submit" id="serendipity_submitcomment" name="serendipity[submit]" value="{$CONST.SUBMIT_COMMENT}" /> <input type="submit" id="serendipity_preview" name="serendipity[preview]" value="{$CONST.PREVIEW}" /></td>Your css code for this is:
Code: Select all
#serendipity_submitcomment,
#serendipity_preview { width: <BLAFASEL>; }