Where can students view all possible badges?

Re: Where can students view all possible badges?

by Simon Coggins -
Number of replies: 0

Hi Sue,

As a workaround you could add some extra styles to your theme's style sheet to hide the sections you don't want to show. For example on the Site badges page you could do something like this to hide the 'criteria' column:

#page-badges-view .collection .criteria { display: none;}

To hide other columns just change .criteria for one of the following:

  • badgeimage
  • name
  • description
  • awards

If you wanted to shrink the badge image size you could do:

#page-badges-view .collection .badgeimage img { width: 50px; height: 50px;}

To shrink to half the current size.

Not sure where you would want to apply a scrollbar but that can be done by setting the container height then using overflow: scroll;

Simon

Average of ratings: Useful (1)