Hey,
Im using the Andreas08 template and my website = www.thejokersweblog.nl
Ive got two questions:
1. Where can I change the text 'said' in comments? Example: http://www.thejokersweblog.nl/archieven ... ken-2.html
You see: '#1.1 - Holy Sj!t said:' How to change?
2. How can I change the padding top of quotes? There is too much space above the quotebox.
Example:
http://www.thejokersweblog.nl/archieven ... .html#c394
Thanks for ur time.
Holy Sj!t
2 questions about comments plugin
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Re: 2 questions about comments plugin
Hi!

If not, maybe someone here care's to share the actual code
Bestregards,
Garvin
Inside the comments.tpl template file. If andreas08 doesn't have that, you can use the comments.tpl from the default template.1. Where can I change the text 'said' in comments? Example: http://www.thejokersweblog.nl/archieven ... ken-2.html
You see: '#1.1 - Holy Sj!t said:' How to change?
you can do that with CSS already. Since you do have a lot of CSS-related questions here, it might be the right time now to get yourself more familiar with CSS?2. How can I change the padding top of quotes? There is too much space above the quotebox.
Example:
http://www.thejokersweblog.nl/archieven ... .html#c394
If not, maybe someone here care's to share the actual code
Bestregards,
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/
-
Don Chambers
- Regular
- Posts: 3659
- Joined: Mon Feb 13, 2006 2:40 am
- Location: Chicago, IL, USA
- Contact:
Re: 2 questions about comments plugin
Andreas08 uses a custom comments.tpl for comments. It also uses a language constant for the word "said". In English, this is defined in the file lang_en.inc.php within your template folder. This template did not create utf-8 subfolder, or the language file would also be located there, but in utf-8 format. You can edit the word to be anything you want. As an alternative, you can copy the file to lang_nl.inc.php and change everything to Dutch if you want.holysjit wrote:1. Where can I change the text 'said' in comments? Example: http://www.thejokersweblog.nl/archieven ... ken-2.html
You see: '#1.1 - Holy Sj!t said:' How to change?
You could add this to your stylesheet:2. How can I change the padding top of quotes? There is too much space above the quotebox.
Example:
http://www.thejokersweblog.nl/archieven ... .html#c394
Code: Select all
.serendipity_comment p{
padding: 0;
}=Don=