Juliusj Posted October 10, 2016 Share Posted October 10, 2016 (edited) Hi, in mobile i got this code on top, anyone knows what is this? And how can i solve it? Edited October 10, 2016 by Juliusj (see edit history) Link to comment Share on other sites More sharing options...
rocky Posted October 10, 2016 Share Posted October 10, 2016 Check the <body> tag in header.tpl. It would appear you have a coding error on that line. Link to comment Share on other sites More sharing options...
Juliusj Posted October 11, 2016 Author Share Posted October 11, 2016 Anything wrong? <body onselectstart="return false" oncontextmenu="return false" ondragstart="return false" onMouseOver="window.status='..message perso .. '; return true;" {if isset($page_name)}id="{$page_name|escape:'htmlall':'UTF-8'}"{/if}> class="{if isset($page_name)}{$page_name|escape:'html':'UTF-8'}{/if}{if isset($body_classes) && $body_classes|@count} {implode value=$body_classes separator=' '}{/if}{if $hide_left_column} hide-left-column{else} show-left-column{/if}{if $hide_right_column} hide-right-column{else} show-right-column{/if}{if isset($content_only) && $content_only} content_only{/if} lang_{$lang_iso}"> {if !isset($content_only) || !$content_only} {if isset($restricted_country_mode) && $restricted_country_mode} <div id="restricted-country"> Link to comment Share on other sites More sharing options...
rocky Posted October 12, 2016 Share Posted October 12, 2016 Yes, the > before class= should be removed: <body onselectstart="return false" oncontextmenu="return false" ondragstart="return false" onMouseOver="window.status='..message perso .. '; return true;" {if isset($page_name)}id="{$page_name|escape:'htmlall':'UTF-8'}"{/if}> class="{if isset($page_name)}{$page_name|escape:'html':'UTF-8'}{/if}{if isset($body_classes) && $body_classes|@count} {implode value=$body_classes separator=' '}{/if}{if $hide_left_column} hide-left-column{else} show-left-column{/if}{if $hide_right_column} hide-right-column{else} show-right-column{/if}{if isset($content_only) && $content_only} content_only{/if} lang_{$lang_iso}"> {if !isset($content_only) || !$content_only} {if isset($restricted_country_mode) && $restricted_country_mode} <div id="restricted-country"> Link to comment Share on other sites More sharing options...
Juliusj Posted October 12, 2016 Author Share Posted October 12, 2016 Thank you It works! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now