Skip to main content
Question

Adjusting Widget height

  • March 16, 2022
  • 2 replies
  • 117 views

Howdy folks!

Throwing this out to the CSS gurus out there, any suggestions how to reduce the height of the below file repository widget? It’s FAR too high and pushes the course description waaaay down the page.  Have been trying in vain using a variety of code options but nothing successful or scalable thus far. 

Any advice / code options appreciated.

 

 

2 replies

gstager
Hero III
Forum|alt.badge.img+8
  • Hero III
  • March 16, 2022

Give this a try and see if it works for you.

You may want to test and make sure other widgets are not adversely affected.

/** Adjust File Widget Height **/
/** Set pixel values as desired **/

.course-docs {
min-height: 200px;
}

.course-docs .tree-wrap {
height: calc(100% - 100px);
}

 


  • Author
  • Influencer I
  • March 17, 2022

Many thanks  @gstager !  This is super useful.