Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>If you provide me image if your theme, I could tell you some common plan for that. Thanks for image.</p> <p>my advices are I suggest not realy zen theme implementation, because it suggest just to change css. and you already have html and css that was done not in drupal way.</p> <ol> <li>Install any theme to your sites/all/themes. I will use for example zen theme. So path will be sites/all/themes/zen</li> <li>Copy files from sites/all/themes/zen/zen sub-theme to sites/all/themes/zen/mytheme</li> <li>Rename sites/all/themes/zen/mytheme/zen.info to sites/all/themes/zen/mytheme/mytheme.info</li> <li>Change theme name in mytheme.info</li> <li>Copy all your css and js files to sites/all/themes/zen/mytheme (better to create subdirs for css and js)</li> <li>Remove zen default zen css files</li> </ol> <blockquote> <pre><code>stylesheets[all][] = html-elements.css stylesheets[all][] = tabs.css stylesheets[all][] = messages.css stylesheets[all][] = block-editing.css stylesheets[all][] = wireframes.css stylesheets[all][] = zen.css stylesheets[print][] = print.css </code></pre> </blockquote> <ol start="7"> <li>Add your css files to mytheme.info. Using this construction</li> </ol> <blockquote> <pre><code>stylesheets[all][] = mycss.css </code></pre> </blockquote> <ol start="8"> <li><p>Add your js files to mytheme.info. Using this construction</p> <p>scripts[] = myjs.js</p></li> </ol> <p>More info about theme.info file look here <a href="http://drupal.org/node/171205" rel="nofollow noreferrer">http://drupal.org/node/171205</a></p> <ol> <li>Look at this image <img src="https://i.stack.imgur.com/v1jwf.jpg" alt="alt text"></li> </ol> <p>This is how I think better to split page.</p> <p>Menu under header looks like primary menu. To theme them add </p> <pre><code>function mytheme_menu_links ($items, $type = 'free') { if (!empty($items)) { foreach ($items as $index =&gt; $link) { $output = l($link['title'], $link['href'], $link['attributes'], $link['query'], $link['fragment']); /* insert your html*/ } return $output; } </code></pre> <p>Right block looks like block. So check block.tpl.php and block theming manual <a href="http://drupal.org/node/104319" rel="nofollow noreferrer">http://drupal.org/node/104319</a></p> <p>Content area theming depends of what we are showing as content. Usually it is view or node. so views = <a href="http://drupal.org/node/352970" rel="nofollow noreferrer">http://drupal.org/node/352970</a> node = <a href="http://drupal.org/node/11816" rel="nofollow noreferrer">http://drupal.org/node/11816</a></p> <p>All other html place into page.tpl.php. But you should do this befor theming blocks, menu or content areas. <a href="http://drupal.org/node/11812" rel="nofollow noreferrer">http://drupal.org/node/11812</a></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

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