- How to log in to your Drupal site
- Go to the site in question, and add "/user" to the URL. It should look like this: https://yoursitename.santarosa.edu/user
- Enter in your JC credentials
- Your user name is not your email address. It looks like jdoe rather than jdoe@santarosa.edu.
- Your password is the same one you use for Outlook, the IDP, Canvas, etc.
- If you are having trouble with your password, go to this page.
- If you are not able to log in, and you are sure that your credentials are correct, it is likely that you have not been added as a user to the site. Make sure you have permission to be a site user by contacting the site admin, and then they, or you, can request that the Web Team add you as a user.
- How to add a basic page in Drupal
- Log into your site
- In the upper left administrative strip, click on "Content" and choose "Add content", then choose "Basic page".
- Give your page a meaningful title - but not too long.
- In the "Body" section, add your content. Play with the different icons in the toolbar to see what they do.
- If you want your page to appear in the navigation for the site, go to "Menu settings" in the right sidebar and check "Provide a menu link"
- If you want to keep working on your page, you can keep it in draft form by unchecking "Publish" at the bottom left of the page. Only people who are logged in will be able to see that page, and it will appear with a pink background rimmed by a dotted border.
- When you are ready to publish your page, click "Publish".
- How to make a link open up in a new tab
- Add your link in the usual way:
Log into your site and in editor mode, put in your link language (see the 3 minute video "Creating Links and Email Links" for instructions) - Once you have your link in, go into "source" in the second row of the editing tools
- Hit control f (command f on a Mac) and type in a word or two from the link you just created. This will help you to find the right link on a page with a lot of content in it.
- Your link will look like this:
<a href="link-address"> More info about links</a> - You will add in the bold text to open in the new tab:
<a href="link-address" target="_blank"> More info about links</a> - Save the page
- Add your link in the usual way:
- How do I put a form on my site?
- If you are creating a basic form and not requesting sensitive information (like SIDs or SSNs) or requiring that documents be uploaded via the form, you can use the Drupal Forms in your site ("webforms" under the "Structure" tab). If you are new to webforms, the Web Team can help you get started.
- If you will be collecting sensitive information (like Student ID's) or collecting uploaded documents, request a Formstack account.
- Why can't I see the changes I made to my site?
You may not see changes thanks to browser cacheing, which is the process of storing data in a cache (a temporary storage area). Your browser stores the content you've recently looked at to save you time and the network from additional traffic. Here's what you can do:
- When logged into your site, in the top black administrative bar, 4th item from the left, you will see "Rebuild Cache". Click to clear your Drupal cache.
- Sometimes, you don't need to see the change, you just need to know it's there. If you are still seeing the old content after clearing Drupal cache, look in:
- A different browser you haven't used in a while
- An incognito window (Chrome) or private window (Firefox)
- You can ask someone else to look on their browser
- Get in touch with the Web Team and we will clear cache on the server for you
- How to add an anchor/jump link
An anchor link is a link, which allows the users to flow through a website page. It helps to scroll and skim-read easily. A named anchor can be used to link to a different part of the same page (like quickly navigating) or to a specific section of another page.
How to Add an Anchor Link to Jump to a Specific Part of a Page:
-
Create an anchor tag and add an id attribute to the anchor element to give a name to the section of the page. The value of the attribute may be a word or a phrase (when using phrases remember not to have spaces, use dashes or underscores instead).
Example: <a id="anchor-name">The name where you want to jump</a>
Alternatively you can also have the following types of anchors:
- Anchor within a header: <h2 id="anchor-name">Section name</h2>
- Anchor within an image: <img id="anchor-name" src="/images/imgname.jpeg"/>
- Anchor within a paragraph: <p id="anchor-name">Paragraph name</p>
- Create a hyperlink by using the id of the link target, preceded by #.
- Example: <a href="#anchor-name">Jump to the part of the page with the “anchor-name” id </a>
- Add the preferred text, and you will be able to click through the page sections
How to link to the anchor from another web page
You can link to your anchor link from other websites, as well. For that, add the URL followed by # and the anchor value. There are two types of such usage.
Link to another page in the same domain:
Enter the relative path of your page followed by # and the anchor value:
<a href="/drupal-faqs#jumplink">Go section to another page in our website.</a>
Link from another website:
<a href="https://en.wikipedia.org/wiki/Main_Page#wikipedia">Go to the main page of Wikipedia .</a>
-
- I am completely new to this - how do I get started?
- There are many great training videos on this page
- You can set up an individual or group training with the Web Team
- I consider myself an intermediate Drupal user. What tools are available to me?
The "Kitchen Sink" in your site (under the "content" tab) has the code for lots of cool features and web components.
There are many great training videos on this page
- How can I make my site look better?
Contact the Web Team - we are here to help