Hello Jai,
Do you ever plan to make money off of your ventures with Key to School?
If your plan is to make money (even eventually and in any way shape or form), then I'm afraid Frances is right and this post is a little spammy since you originated this thread.
If you don't plan on making money, then why are you offering hosting?
Patrick Malley
Posts made by Patrick Malley
Moodle in English -> Themes -> New Theme Idea -> Re: New Theme Idea
by Patrick Malley -
Not a problem at all. This was a summer lets-see-if-I-can-do-this project. Be sure to harvest anything of value now because I'll probably be changing sooner or later.
Moodle in English -> Themes -> New Theme Idea -> Re: New Theme Idea
by Patrick Malley -
As a general rule, CSS rules can be created on the fly. Just add your formats and, as long as their isn't a contradicting style later in the cascade, it should take.
For example, if you don't find what you're looking for, just add it:
.coursebox .info {
color:#000;
}
.coursebox .summary {
color:#ff0000;
}
Also, all CSS rules should be added to the .css files in your theme.
For example, if you don't find what you're looking for, just add it:
.coursebox .info {
color:#000;
}
.coursebox .summary {
color:#ff0000;
}
Also, all CSS rules should be added to the .css files in your theme.
This is a known issue that slips in and out of my consciousness from time to time.
I've added it to my todo list so as to not get lost again.
Here is the fix:
Add the following to the bottom of styles.css:
body#email {
background:#fff;
background-image: none;
}
#email .navbar {
padding: 3px 0 4px 7px;
margin: 0 0 12px 0;
background:#333;
}
#email .navbar a {
font-size: 0.8em;
font-weight: bold;
color:#fff;
background:none;
}
Let me know if anything else needs tweaking.
I've added it to my todo list so as to not get lost again.
Here is the fix:
Add the following to the bottom of styles.css:
body#email {
background:#fff;
background-image: none;
}
#email .navbar {
padding: 3px 0 4px 7px;
margin: 0 0 12px 0;
background:#333;
}
#email .navbar a {
font-size: 0.8em;
font-weight: bold;
color:#fff;
background:none;
}
Let me know if anything else needs tweaking.