Screen Width Issue

Jump to solution
90897
Community Novice

I just want Canvas but WIDER on my screen.  I want to be able to use the entire width of the screen in a learning module.  If that's impossible, what software will let me do that?  Thanks.

Labels (1)
1 Solution
kona
Community Coach
Community Coach

 @canvas_admin ​ posted a possible solution to this on How can I widen the area used for content on a page? 

His solution was,

I've been playing around with CSS based on the new UI and have been able to resize the right side wrapper to give myself some more room on a course front page.

Here's my code and the numbers can be changed around to fit your needs.

/*resizes the right side wrapper of a content page*/

.ic-app-main-content__secondary{

    flex: 0 0 225px;

    padding-left: 0px;

}

You can get some real estate that way.  I'm sure there's probably more sophisticated ways.

View solution in original post