Naz Oke
asked 9 years ago

Hi 🙂
I followed the guide http://www.designwall.com/guide/how-to-translate-wordpress-theme/ and everything is ok. I want to translate also "previous post" to "article précédent" and "next post" to "article suivant" (single posts bottom). But I don’t find them in my po file… I already translated all "previous" and "next" in po and mo files.

How can I result this ?
Thank you

1 Answers
DominicStaff
answered 9 years ago

Hi,
Please try add the following code to the style.css file:

.post-navigation .nav-links .nav-previous:before {
    content: "...." !important;
}
.post-navigation .nav-links .nav-next:before {
   content: "....." !important;
}

Or you can change in the dw-focus.min.css file. To do it, please open the file then find the following code line:

.post-navigation .nav-links .nav-next:before {
  content: "Previous Post";
  font-family: "Montserrat";
  text-transform: uppercase;
  font-size: 11px;
  font-weight: normal;
  display: block;
  line-height: 20px;
  content: "Next Post";
}

Hope this helps !

nazou
replied 9 years ago

Thank you Dominic. I found this question just after sending mine : http://www.designwall.com/question/how-to-remove-picture-borders-in-dw_focus-1-2-6/
Thanks again. 🙂

Powered by DW Question & Answer Pro