Help please about

delphoma

New Member
Hello
i try to add a script in subfolder in order to sell banners ads and add javascript in wrapper.html file


HTML:
<div id="topmenu">
            {$menu-1}
            <br class="cb" />
        </div>
          </br>
                      <div id="topmenu">
            <script type="text/javascript" src="http://www.buxrecord.com/ads/js.php#type=banner&align=center&zone=1"></script>
            <br class="cb" />
                       
              </div>
         
    </div>

    {$user_cp_main_menu}

    <div id="content">
        <div class="cb"> </div>
Now Firefox browser, Microsoft Edge display well ads zone,


but Chrome browser not displaying well. (cheick picture


Please help me
 

Basti

Administrator
Staff member
You placed it wrong in html
You place it within the navigation, which is wrong

Write it into the content area after the following
Code:
    <div id="content">
        <div class="cb"> </div>
 
Top