I’m proud to release our seventh premium theme for Moodle - Prestige.
This theme is fixed at 900px wide, which of course could easily be changed to any width with a single-line CSS edit.
I have included 5 style variations in every download: default, red, green, blue, & brown.
As is typically the case with every new release, this is my favorite so far. I like the cleanliness that two columns gives Moodle.
To get the two columns, all that I’ve done is hide the left column as such:
#left-column {
display:none;
}
The problem this presented, however, was that it instantly hid any block that was present in the left column prior to selecting the theme. So, I added the following to display the left-column whenever editing was turned on:
.editing #left-column{
display:block;
}
But, then I thought how this could cause confusion if an instructor places something in the left column while editing is turned on only to have it disappear when outside editing mode. For this reason, I’ve shaded the left column with a “warning” pink background to remind them that anything placed there will not be shown to all users (shown below):
.editing #left-column{
display:block;
background:#fdadae;
}



Comments
I want to by the moodle theme but I was aondering if u could remove the moodle icon in the bottom of the web page.
Yes. Removing the Moodle icon is pretty easy. See this post for instructions on doing so. Please let me know if you have any further questions about your purchase.
Leave a Comment