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,
222.png


but Chrome browser not displaying well. (cheick picture
1111.png


Please help me
 
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>
 
Back
Top