Forum Discussion
Learning Journal In Rise
Is there any way to make the text box appear larger? Or would learners need to click and drag it to make it larger?
- MikeAmelang6 years agoCommunity Member
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, like6em
. Heck you could even go crazy and try7em
. 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
- MartiAhlquist6 years agoCommunity Member
What if you want the box to be wider. Some coworkers have looked at it and say it is too small. Any way to fix that?
I've also found that the font size doesn't change doing what the instructions said. I put it up to 24 to try it and it still was very small.
- MikeAmelang6 years agoCommunity Member
Marti,
Mmmm. Do you have a link you can send me to troubleshoot?
Mike
- MadhuriGambh6093 years agoCommunity Member
Mike - Great work! how t remove "Print action button"?