Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>You can find your global structure of your page in page.xml. For example if you can use 3 colums</p> <pre><code>&lt;default translate="label" module="page"&gt; &lt;label&gt;All Pages&lt;/label&gt; &lt;block type="page/html" name="root" output="toHtml" template="page/3columns.phtml"&gt; .... </code></pre> <p>then, in the template page/3columns.phtml of your design theme you can see this phtml and into it you can see this:</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="&lt;?php echo $this-&gt;getLang() ?&gt;" lang="&lt;?php echo $this-&gt;getLang() ?&gt;"&gt; &lt;head&gt; &lt;?php echo $this-&gt;getChildHtml('head') ?&gt; &lt;/head&gt; &lt;body&lt;?php echo $this-&gt;getBodyClass()?' class="'.$this-&gt;getBodyClass().'"':'' ?&gt;&gt; &lt;?php echo $this-&gt;getChildHtml('after_body_start') ?&gt; &lt;div class="wrapper"&gt; &lt;?php echo $this-&gt;getChildHtml('global_notices') ?&gt; &lt;div class="page"&gt; &lt;?php echo $this-&gt;getChildHtml('header') ?&gt; &lt;div class="main-container col3-layout"&gt; &lt;div class="main"&gt; &lt;?php echo $this-&gt;getChildHtml('breadcrumbs') ?&gt; &lt;div class="col-wrapper"&gt; &lt;div class="col-main"&gt; &lt;?php echo $this-&gt;getChildHtml('global_messages') ?&gt; &lt;?php echo $this-&gt;getChildHtml('content') ?&gt; &lt;/div&gt; &lt;div class="col-left sidebar"&gt;&lt;?php echo $this-&gt;getChildHtml('left') ?&gt;&lt;/div&gt; &lt;/div&gt; &lt;div class="col-right sidebar"&gt;&lt;?php echo $this-&gt;getChildHtml('right') ?&gt;&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;?php echo $this-&gt;getChildHtml('footer') ?&gt; &lt;?php echo $this-&gt;getChildHtml('before_body_end') ?&gt; &lt;/div&gt; &lt;/div&gt; &lt;?php echo $this-&gt;getAbsoluteFooter() ?&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>with the getChildHtml('content') ?>. Is this resolve your question?</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload