Jump to content

Show Assignment Wall in MyFrog


Graham Quince

Recommended Posts

I've had a couple of schools now keen for the assignment wall to display in MyFrog.  On investigation, it looks like we just use CSS to hide it.  Adding this code to the student dashboard will display the assignment wall:

<style>
/* Show the Assignment Wall in MyFrog */
@media (max-width: 550px) {
    .assignment-info {
        display: inline-block !important;
        position: absolute !important;
        top: 20px !important;
        left: 10% !important;
        border-right: 0px !important;
    }
    .assignment-bar .complete-assignment .btn-danger {
        width: 70% !important;
        float: right !important;
    }
    
    .assignment-info .assignmentwall {
        transform: scale(1.5) !important;
    }
    
    .assignment-info h5,
    .assignment-info .assignment-subject-teacher,
    .assignment-info .frogui_components_activity_count, 
    .assignment-info .frogui_components_duedate_indicator {
        display: none !important;
    }
}
/* end of show assignment wall */
    
</style>

I'm speaking to the product team about getting this built-in, but in the meantime, this is available if you want to try it.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...