Additional html to be placed after the <body> tag (in the very beginning)
Additional html to be placed before the </body> tag (used for putting the layer data)
These two advanced options allows you to fully redesign your page layout. Here you can add any kind of HTML - tables, layers, include scripts, images, redifine styles, etc.
Important: If you add images or scripts with <script src=""> tag, be sure to leave spaces after the "src" property and after the "=" sign.
<script src = "http://path-to-my-script.js"></script>
<img src = "http://path-to-my-image.jpg">
Explanation: As with "Advanced Header upload Interface" in P-admin the user is able to upload images for the header, in the whole padmin those images are accessible directly with their names - no additional path is needed.
For instance: the name of the uploaded image is head.png so the tag for this image would be:
<img src="head.png"> The system then parses this tag and adds in the src attribute additional path (the real path to the image) like <img src="/head/uploaded/101/head.png">. There for in order to use your own paths and skip system parse you should add black space after src and after the "=" sign.
|