Issue number 50 - custom theme for high school

Issue number 50 - custom theme for high school

by Jimbob Bim -
Number of replies: 9
Hello all. Ive been asked by fosterh over at the Google Highly Open Participation page to post the theme I designed for my high school here for you all to review. The task is here http://code.google.com/p/google-highly-open-participation-moodle/issues/detail?id=50

Thank you for your time
Average of ratings: -
In reply to Jimbob Bim

Re: Issue number 50 - custom theme for high school

by Jon Bolton -
Picture of Particularly helpful Moodlers Picture of Testers

I've downloaded the theme and installed it on my test server. I've only had time for a quick look today, but I like what I've seen so far.

Just one thing I've noticed already... the nav bar in the site forums is showing SITE > array (screenshot attached), rather than SITE > Forums > Site News, which is what shows in the Standard theme.

I'll review it again over the next couple of days.

As one of the criteria for task 50 was to design a theme and make the colours and graphics match the school's existing colours etc, could you post the url to the school website as well, thanks

Attachment Clip2.gif
In reply to Jon Bolton

Re: Issue number 50 - custom theme for high school

by Jimbob Bim -
My school site is here:
http://livingstonps.schoolwires.com/lhs/site/default.asp

Ill look into that weird error and give you a fix as soon as possible.


Thanks for your time!
In reply to Jimbob Bim

Re: Issue number 50 - custom theme for high school

by Matt Clarkson -
Picture of Core developers Picture of Peer reviewers Picture of Plugin developers
Hi Jim,

To fix that error you need to change line 37 in header.html from:

<div class="breadcrumb"><?php print_navigation("$navigation"); ?></div>

to this:

<div class="breadcrumb"><?php print_navigation($navigation); ?></div>

In moodle 1.9+ you the double quotes from around the navigation variable in the theme header otherwise the theme will print out 'Array' in the navigation.

Cheers,
Matt.

In reply to Matt Clarkson

Re: Issue number 50 - custom theme for high school

by Peter Birdsall -

Hi Matt

Following on from your advice here, any ideas on how I can fix the code for adding categories to the breadcrumb - I posted this here:

http://moodle.org/mod/forum/discuss.php?d=87352

Without the extra bit for categories it works fine. With it it still gives "array"

Thanks

Peter

In reply to Jimbob Bim

Re: Issue number 50 - custom theme for high school

by Matt Clarkson -
Picture of Core developers Picture of Peer reviewers Picture of Plugin developers
Hi Jim,

Thanks for your theme, it looks complete and is based on your schools colours - here's a list of suggestions I have to improve it:

  1. There is not enough contrast between the foreground and background colour of the H1 tag. It is important to make sure your theme is accessible.
  2. Try using a dark grey instead of black for the body text colour, this will make the text much easier to read (#333333 looks good).
  3. There is quite a large fixed width margin on the body, if someone is using a low-res screen, 800x600 for example, 100px takes up a large proportion of their screen.
  4. The colour you have used does not quite match the colour used on your school's site. You may want to consider using a colour gradient in your header as your school does with their site.
  5. Small logo looks a little jagged. (like it wasn't converted to true colour before being resized.)
  6. The course modules on the course pages look very cramped - the list items need some more padding.
Cheers,
Matt.
In reply to Matt Clarkson

Re: Issue number 50 - custom theme for high school

by Jimbob Bim -
Fixed all the issues you requested. Thanks for the comments.
In reply to Jimbob Bim

Re: Issue number 50 - custom theme for high school

by Matt Clarkson -
Picture of Core developers Picture of Peer reviewers Picture of Plugin developers
That was quick smile

The changes look good - just a couple of things:

  1. 'Array' is back in the navigation.
  2. The background colour on the blocks has disappeared - not sure if that was intentional.
  3. There are a number of places where the contrast between the foreground and background is really low.

-Matt.


In reply to Matt Clarkson

Re: Issue number 50 - custom theme for high school

by Jimbob Bim -
Again thanks for your help. Fixed the issues and the places where I saw the contrast as too low. Thanks again.