Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>I can't access your site at the moment, so I'm basing this on fairly limited information. But if the home page is static content, the views module might not be appropriate. It might be better to create a page (In the menu, go to: Create content > page), make a note of the page's url, and then change the default home page to that url (Administer > Site Configuration > Site information, 'Default front page' is at the bottom). Although I might be misunderstanding what you mean by 'static content'.</p> <p>But however you're creating the front page, don't edit the css in the theme - it'll get overwritten next time you upgrade. Instead you need to create a sub-theme.</p> <p>As an example, if you want to subtheme Garland, in drupal 6. You first need to setup a directory for your themes. Go to <code>sites/all/</code> in your drupal installation, and create a subdirectory called <code>themes</code> if it doesn't already exist. Go into that directory, and create a directory for your subtheme, say <code>mytheme</code> (i.e. <code>sites/all/themes/mytheme/</code>). Then use your text editor to create a file called <code>mytheme.info</code> in that directory, with the contents:</p> <pre><code>name = My Theme version = 0.1 core = 6.x base theme = garland stylesheets[all][] = mytheme.css </code></pre> <p>And then use your text editor to create a file called <code>mytheme.css</code> in that directory, and put the extra CSS in there.</p> <p>For more information, there's the druapl documentation on <a href="http://drupal.org/node/171205" rel="nofollow noreferrer">.info files</a> and <a href="http://drupal.org/node/171209" rel="nofollow noreferrer">style sheets</a>. Although, you might want to buy a book, as the online documentation isn't great.</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