Join SECOORA Give Back

help

Create a page

  1. Click Create content and then choose Page
  2. Add a Title. This will be displayed at the top of the page as well as in the very top of the browser. Dont make it too long. Try to use keywords as search engines pay attention to this section
  3. Add page content in the Body. This is teh main part of the page. Read more below under "Formatting Content"
  4. Ignore Input format (should be set to "Full HTML")
  5. Ignore Log message
  6. Add a URL path settings. This creates the page name in the webaddress (eg www.website.com/urlpathsettings) use LETTERS, NUMBERS, UNDERSCORES_ and DASHES – only. Use keywords as search engines pay attention to this section
  7. Ignore Comment settings (should be set to "Disabled")
  8. Menu settings:
    1. Add a Title. This is what displays in the menu (ie the link)
    2. Description. This is what appears when the user hovers over link. I usually use the same text as the title.
    3. Choose a Parent item. this is where the page sits in the navigation structure. if yyou scroll down you will see the site navigation. Choose the item that you want your page to sit under .
    4. Choose the Weight of the link. This controls the order of the link. The smaller the number, the higher it sits.
  9. File attachments. This allows you to upload images to use on the page. Under each file, the web address is displayed. This is used to insert the image using the Insert Image button on the editor or if you add the image using html. The page must be saved for the images to display in the editor
  10. Ignore Authoring information
  11. Ignore Publishing options (should be set to "Published")
  12. Click Submit button to save your page

 

Formatting Content

There are three ways of formatting the content

  1. Using the built in wysywig editor. This requires the editor to be installed. This is the simplest way to format your pages. The application gives you a simple interface similar to a word processing application and writes the html for you. It does restrict some of the advanced ways of formating the content so advanced users prefer the other methods. To turn the editor on or off
    1. go to My Account
    2. click the Edit tab.
    3. Click on TinyMCE rich-text settings
    4. Change the Default State to the setting you desire
  2. Hand coding the HTML. This is where you format by writing the code your self. This is best for small edits or changes. See below how to format HTML
  3. Using a HTML coding Application

 

Editing and deleting content

To edit or delete existing content, log in and then bring up the page you wish to edit. Look on the page for an "edit" tab. Depending on your user permissions, you might see this on all pages or only on certain ones.

Clicking the edit tab will bring up a page with a form for changing the page. Here you can change the text and settings. Once you have the text and settings in a suitable form, click on the "Submit" button on the bottom of the form. Note that certain sites may be set up to require you to "Preview" the page before you can submit your changes.

If you wish to delete the page (and you have appropriate permissions), click on the "delete" button near the bottom of the form. You”ll get a second chance to confirm that you wish to delete the page, or to change your mind!

If you cannot find the page you want to edit go to Administer > Content or do a search for it

 

Advanced User

visit the Drupal handbooks for advanced help: http://drupal.org/handbooks

 

Formatting HTML

You can optionally format your entry in friendly old HTML. But hey, if you”re a novice, don”t worry–it’’s not as difficult as it sounds. Here’’s a quick primer:

If you want something to be bold, just enclose it in <b> or <strong> tags, like this:

<b>This text is bold</b>

<strong>This text is bold</strong>

Note that there is always an opening tag (no forward slash) and a closing tag (a forward slash before the tag name, indicating that you are "turning it off").

To make something italic, put it in <i> or <em> tags:

<i>This is in italics</i>

<em>This is emphasized</em>

There is considerable debate about the semantic nature of the <b> and <i> tags versus the <strong> and <em> tags.

To put things nicely in paragraphs, enclose them in <p> tags:

<p>This is a paragraph.</p>

To make a bulleted list, first open a list with a <ul> tag (that stands for "unordered list"), then put each list item in <li> (yes, for "list item") tags. Don”t forget at the end to close off your list with a closing </ul> tag. Here’’s how it looks:

 

<ul>
<li>This is the first bulleted item</li>
<li>This is the second bulleted item</li>
</ul>

 

The result is displayed below:

  • This is the first bulleted item
  • This is the second bulleted item

To add a link to you need to use the <a> (anchor) tag.

<a href="http://www.example.com">Example.com</a>

To add links to other pages within your Drupal site you do not need to add the full URL, you can simply refer to the node like so:

<a href="/?q=node/1222">My node</a>

Note the "/" at the beginning. Also the above example is using non-clean URLs. If your site has clean URLs enabled you can remove the ?q= so that you just have <a href="/node/1222">My node</a>.

‘, ‘