Enlarge Assignment display box?

Jump to solution
jcombs
Community Novice

When we were at InstructureCon, I was visiting with A00015317 from Utah State and noticed that his assignment box was enlarged....almost like a page where it extended as far as he wanted.  I had asked Canvas directly before and was told you couldn't enlarge it.

Does anyone know how you are able to do that?  Is it some javascript?

Labels (1)
1 Solution
kenneth_larsen
Community Champion

I had actually forgotten about that. It is amazing what you just get used to. I added the following to our global CSS file to achieve this (this means it applies to everyone not just you):

#assignment_show .description.teacher-version {
     padding: 15px;
     overflow-y: visible;
     height: inherit;
     border: none;
     resize: vertical;
     margin-top: 20px;
}

Disclaimer: Custom CSS and Javascript may cause accessibility issues or conflicts with future Canvas updates! Before implementing custom CSS or Javascript, please refer to Canvas documentation.

View solution in original post