Reducing White Space on Grading Page (2.8)

Reducing White Space on Grading Page (2.8)

od John Provasnik -
Število odgovorov: 3
Slika Particularly helpful Moodlers Slika Testers
I was wondering if anyone knew what controls the amount of space between the student's name and submission status, as well as the space between the submission status and the grade (when grading a student's assignment submission). I wish to trim down the amount of space shown in the picture, hopefully with some CSS, but wasn't sure what class controlled this spacing. I appreciate any input. I'm using a customized bootstrap theme.


Povprečje ocenitev: -
V odgovor na John Provasnik

Re: Reducing White Space on Grading Page (2.8)

od Mary Evans -
Slika Core developers Slika Documentation writers Slika Peer reviewers Slika Plugin developers Slika Testers

Hi,

Best thing to do is use FireBug and find out what is causing those white spaces. Then when you have discovered the class or id of the element being inspected you can copy the CSS and add i to the Cistom CSS in your theme's settins page, and then alter it, like margin-top: 0; or padding-bottom: 0;

Hope this helps?

Mary

V odgovor na Mary Evans

[SOLVED] Re: Reducing White Space on Grading Page (2.8)

od John Provasnik -
Slika Particularly helpful Moodlers Slika Testers

Yes Mary -- that did the trick!


For anyone else who was wondering, the div classes involved were "usersummary" and  "submissionstatustable"

The CSS change needed for each was:

element.style {

margin_bottom: 80px

}


where I changed the 80px to 50px which made the difference I was looking for.