ATUS Home

Getting the New Western Logo onto your Template site

If you already are using the Western Template, then it's pretty easy to get the new logo to show up.

  1. Find your css file in /resources/style.css
  2. Look for the line that starts with .copyright
  3. Change the url of the background image to http://www.wwu.edu/westernlogo_sm.png
  4. Change the height of the .copyright class to 89px;
  5. Save the file
  6. Find your footer file in /includes/footer.html
  7. Replace height="32" with height="89" (see below)
  8. Save the file

See the pertinent sections of the css and footer.html below in both the original and the correctly modified version.

Old CSS

.copyright {
background-image:
url(wwulogo.gif);
background-position: right;
background-repeat: no-repeat;
color: #999999;
font-size: 0.8em;
height: 32px;
text-align: left;
width: 752px;

New CSS

.copyright {
background-image:
url(http://www.wwu.edu/westernlogo_sm.png);
background-position: right;
background-repeat: no-repeat;
color: #999999;
font-size: 0.8em;
height: 89px;
text-align: left;
width: 752px;

Old Footer

<img src="/wwu_template/resources/trans.gif" alt="Western Washington University" width="160" height="32" border="0" align="right" />

New Footer

<img src="/wwu_template/resources/trans.gif" alt="Western Washington University" width="160" height="89" border="0" align="right" />

Need More Help?

Web Services can help you with your request. Email webhelp@wwu.edu and include the url of your CampusWeb site in your message.