Forum Discussion
Learning Journal In Rise
Magda,
The text box can be changed using the CSS in the LearningJournal.css file. Around line 21 you'll find the following code:
.journalentry-response {
width:100%;
height:5em;
}
These lines declare how tall and wide each journal entry text box will be. If you want the height of the text boxes to be bigger, change the value of 5em
to something larger, like 6em
. Heck you could even go crazy and try 7em
. It's almost Friday after all. ;)
Want to change the text size within the text boxes? Simply add another line called font-size
. Like so:
.journalentry-response {
width:100%;
height:5em;
font-size:12pt;
}
Again, increase the value of font-size
higher according to taste.
CSS is very powerful. Here is a link that shows how you can test CSS changes without reloading your SCORM.
Let me know if you have any other questions.
Mike
Mike - Great work! how t remove "Print action button"?