Search…

X3 Photo Gallery Support Forums

Search…
 
User avatar
Thomas
Experienced
Topic Author
Posts: 95
Joined: 22 Dec 2011, 04:09

Translate Comments

13 Sep 2016, 04:48

Hi Karl,

In our last email exchange, you informed me that it was possible to translate "Comments" with the CSS.
Can you explain how?

Thanks in advance.
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: Translate Comments

13 Sep 2016, 06:42

Try this in settings -> custom -> custom CSS:
Code
#comments h2 {
  font-size: 0;
  margin: 24px 0;
}
#comments h2:after {
  content:'Add your title here';
  font-size:24px;
}
 
User avatar
Thomas
Experienced
Topic Author
Posts: 95
Joined: 22 Dec 2011, 04:09

Re: Translate Comments

13 Sep 2016, 07:33

Thanks Karl !