MyBB Community Forums

Full Version: Change <html lang>
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
My first HTML line in every page is

<html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml">

And I want to change it to

<html xml:lang="ro" lang="ro" xmlns="http://www.w3.org/1999/xhtml">

How can I do that?
templates consist of just <html> and browsers interpret it as document in English (default language is English)

if required, you can use Search/Replace feature available at templates section to replace all <html> to your language code
<html xml:lang="ro" lang="ro" xmlns="http://www.w3.org/1999/xhtml">
Thanks for helping.