I decided to try to see if i could reverse engineer it as I have not tried to use transparent boxes before and it has come up a treat. I have emailed the original designer seeking his permission to release the theme as GPL into the Moodle community.
Best thing is that the way I have built it, it is very easily customisable by using a 'parent theme' and a single simple css file to make changes to create variations.
To create the many variations below required only 5 changes to a css file.
Have a look, provid feedback/suggestions and hopefully I will be able to release this.

Re: New Theme "Funky" soon to be released. Feedback wanted
I would love to use something like that to my upcoming project moodle site. The only thing I can think of is the contrast issues with the background. I would go for light yellow/whiteyish background. But they look really great!
Mikko Turunen
Tampere-Finland
I have made some progress with Funky but need some help from the CSS guru's out there.
The issue is that this theme looks great in everything BUT IE6.
I have made some strong leeway by looking at what others have done on the web and have gotten to this point.
http://playpen.riverview.nsw.edu.au/course/view.php?id=24?&theme=funky
As you can see on this site, it is nearly all looking right..but all of a sudden you cannot click on anything on the page anymore!! (again only in IE, works fine in the Fox)
I am using the attached theme (this is not final, so don't use on your sites)
Hi Julian,
links work in IE6 if you add to the end of styles_ie6.css
*a{position:relative;}
and DO NOT add anything relative or z-index to tags before it in styles_ie6.css.
Paths for images are another problem (blank.gif in iepngfix.htc and theme/funky/... in styles_ie6.css) if moodle is not installed to the webroot...
i have tried adding your tag as suggested but couldn't get it to work
I tested it before sending previous message and got it working - it still works with my test moodle (after 100 trials) ... end tag } was also missing from .forumpost .left and I changed images to different folder but it should not matter.
Check once more attached styles_ie6.css (the last row and missing } added)
I guess that IE6 trouble is the main reason why png alpha transparency is so rarely used.
Its very basic really!
Cheers
Re: New Theme "Funky" soon to be released. Feedback wanted
Splendid!
Rockettheme.com has of course copyright to all their themes ( http://www.rockettheme.com/Terms_amp_Conditions/ )
but ideas are free. If it is not possible to use these themes as they look right now you could certainly make some changes so that releasing these themes as GPL is possible (those marvellous background and header images for example - but I hope it is not necessary)
And if you get tired to transparency all backgrounds can be changed to "normal" again
Re: New Theme "Funky" soon to be released. Feedback wanted
I have also added a two more, just for fun.
Re: New Theme "Funky" soon to be released. Feedback wanted
Re: New Theme "Funky" soon to be released. Feedback wanted
Re: New Theme "Funky" soon to be released. Feedback wanted
I am more than happy to share what I had achieved. Maybe if someone else can get it working in IE I can the repost as a finished product.
Current version works well in everything except IE6. Ill add to the DB today.
Re: New Theme "Funky" soon to be released. Feedback wanted
How easy would it be to replace the images? Would it be possible to code the theme so the background image changes on a regular basis?
Thanks,
Matt
Re: New Theme "Funky" soon to be released. Feedback wanted
Re: New Theme "Funky" soon to be released. Feedback wanted
these themes are really super - just what I have been looking for. I hope you'll get them to work in IE, too. I think my students will love them.
Thanks for the great work.
Re: New Theme "Funky" soon to be released. Feedback wanted
That can be fixed...it is an old bug of IE6 and IE5.5 on Windows and there are a couple of fixes that allow IE to properly render PNG alpha transparency. I have archieved one theme that has a small javascript for this purpose - if you need it Julian...
Thinking of those old browsers it could be also possible to have separate css for IE6 in styles_ie6.css (moodle 1.8->) or use gif images for old browsers. Using alpha filter (like any other filter) makes pages to load images a little slower but it might be the best solution.
Re: New Theme "Funky" soon to be released. Feedback wanted
In http://demo.rockettheme.com/jul07/index.php?option=com_content&task=view&id=21&Itemid=42 trick is done with files template_ie6.css and iepngfix.htc
You may check it with IE6 or IE5.5 and view the source code...
Re: New Theme "Funky" soon to be released. Feedback wanted
In my case it's not limited to 5.5 and 6, IE7 has the same problem.
Re: New Theme "Funky" soon to be released. Feedback wanted
David,
what do you mean? Could you explain the problem you have with IE7.
I have IE7 and I haven't seen any problems with IE7 so there must be something special with your version of IE7 or some setting...
Re: New Theme "Funky" soon to be released. Feedback wanted
Mauno
Yes it was my mistake, working fine in IE7.
Re: New Theme "Funky" soon to be released. Feedback wanted
They are truly beautiful, but I feel compelled to be a wet blanket and mention that I would really like to see at least one that is ALSO beautiful but has higher contrast for the visually impaired. I am not visually impaired, merely starting to encounter some difficulty, but I find the dark backgrounds with light text, or the busy images underneath (like Lost) are more difficult to read. I can't imagine trying to take a typed quiz and stressing over the test as well as trying even a little harder to read the text. I also think I would have trouble reading large amounts of text with the combination of font color, background, and font size. I can control font size with the browser, but it might be nice to have one with a larger default font as well.
Certainly a person could alter a released theme to make this happen, but a lot of people don't really have access to their themes or have the css skills necessary to make those kinds of changes. So I will beg for one more accessible theme for the set, if you have time for that, for those of us who have a bit of trouble in the eye department but still love beautiful things!
And wow, I'll say it again, these are beautiful!
atw
Re: New Theme "Funky" soon to be released. Feedback wanted

Re: New Theme "Funky" soon to be released. Feedback wanted
Re: New Theme "Funky" soon to be released. Feedback wanted
Can I please (with a cherry on top) get a copy?
Re: New Theme "Funky" soon to be released. Feedback wanted
Please note, as said above, currently this theme will not work on IE6. If anyone does get it working, please email me your code so I can update the package for everyones enjoyment.
Re: New Theme "Funky" soon to be released. Feedback wanted
Re: New Theme "Funky" soon to be released. Feedback wanted
I looked at header.html, on all the funky themes I see the following code to drive the breadcrumbs:
<?php //Accessibility: breadcrumb trail/navbar now a DIV, not a table.
if ($navigation) { // This is the navigation bar with breadcrumbs ?>
<div class="navbar clearfix">
<div class="breadcrumb"><?php print_navigation("$navigation"); ?></div>
<div class="navbutton"><?php echo $button; ?></div>
</div>
Simply removing the quotes in print_navigation fixed this issue, so I now have:
<?php //Accessibility: breadcrumb trail/navbar now a DIV, not a table.
if ($navigation) { // This is the navigation bar with breadcrumbs ?>
<div class="navbar clearfix">
<div class="breadcrumb"><?php print_navigation($navigation); ?></div>
<div class="navbutton"><?php echo $button; ?></div>
</div>
Julian, is anyone else having this issue?
Thanks,
Matt
Re: New Theme "Funky" soon to be released. Feedback wanted
Julian,
the fix that I sent before works but the main problem is not in IE - it is that your themes do not read meta tags at all. I made those two changes to theme funky styles_ie6.css, added styles_ie7.css and meta.php with styles_ie7 code, added to funky config.php (parent theme)
$THEME->metainclude = true;
$THEME->standardmetainclude = false;
$THEME->parentmetainclude = false;
and for other "children" of funky
$THEME->metainclude = false;
$THEME->standardmetainclude = false;
$THEME->parentmetainclude = true;
If moodle is not in web root, you must also change in styles_ie6.css paths /theme/ to "real paths like /moodle/theme/
Test with IE6 in http://korpelainen.net/moodle (theme selector). Attached changes.
Re: New Theme "Funky" soon to be released. Feedback wanted
I have tested and updated Mauno's changes to the package in the themes database.
So now it is there for everyone to enjoy in any browsre.
Have fun
Re: New Theme "Funky" soon to be released. Feedback wanted
I forgot one thing: because standardmetainclude is false Standard tab system fixes for IE6 (that Urs has made) are not included and Standard tabs are not very suitable for this kind of a theme. One possibility would be to add Standard theme styles_ie6.css tags to Funky styles_ie6.css or to CREATE DIFFERENT TABS FOR FUNKY
Moodle logo is partly repeated in IE and editing /funky/funky_color.css helps:
#header-home, #header {
}
#header-home h1.headermain {
background: url(logo.png) no-repeat;
}
#header h1.headermain {
background: url(logo_small.png) no-repeat;
}
Finally some icons + readability (font size/contrast/text colors...) might be changed ...but this is a matter of taste and we can all make Funkies look just as "cool" as we like.
Re: New Theme "Funky" soon to be released. Feedback wanted
...and if you read this: http://moodle.org/mod/forum/discuss.php?d=83494
Standard theme styles_ie6.css tags MUST BE INCLUDED to theme/funky/styles_ie6.css or IE6 may have some more difficulties
Re: New Theme "Funky" soon to be released. Feedback wanted
Eventually I'll be uploading this theme to my school site. Thanks for any help.
Re: New Theme "Funky" soon to be released. Feedback wanted
if your http://localhost is c:\moodle\moodle then /theme/funky/logo.png should be ok
if localhost is c:\moodle try /moodle/theme/funky/logo.png
Re: New Theme "Funky" soon to be released. Feedback wanted
<!--[if IE 6]>
<link rel="stylesheet" type="text/css" href="<?php echo $CFG->themewww ?>/funky/styles_ie6.css" />
<![endif]-->
I only downloaded this theme a couple of days ago. Ive check that the meta.php is correct, and that the config.php s are correct with regard to setting metainclude, standardmetainclude, parentmetainclude according to an earlier post you made. The download seems fine. So im a little curious why it doesnt work without me having to edit the header.html.
Also
Re: New Theme "Funky" soon to be released. Feedback wanted
Meta.php and styles_ie6.css & styles_ie7 do not exist in moodle 1.7 (or moodle 1.6) - Urs added them to moodle 1.8 - so you really need to add those tags to themes to get different css for ie6 and ie7.
Attached one modified example of styles_ie6.css (I have taken away login block code from other css files and and trans-10/15.png from ie6)- extra code like
.box,.generalbox,generalboxcontent,textarea .generalbox {
background-image: none;
position:relative;
z-index:100;
}
may be usefull if you have problems with some buttons or textareas (editor)...
Re: New Theme "Funky" soon to be released. Feedback wanted
Re: New Theme "Funky" soon to be released. Feedback wanted
Try to add this to styles_ie6.css:
.article_seperator {
display:none;
}
(it's not standard moodle theme's code but there is a small div in footer.html that could be taken away or hidden with this code)
Re: New Theme "Funky" soon to be released. Feedback wanted
Re: New Theme "Funky" soon to be released. Feedback wanted
Looking at the login block, it works fine with Firefox, but it doesn't with IE7. Hitting enter just beeps - what do you expect from Microsoft? I think it's because with display: none, it doesn't have anything to focus on (but what do I know?).
I haven't tested this on any browsers other than IE7 and Firefox, but would it work to change the CSS in /funky/funky_layout.css for the login button to:
.block_login .loginform .btn {
position: absolute;
top: -9000px;
left: -9000px;
}
Thanks for the great theme!
Matt
Re: New Theme "Funky" soon to be released. Feedback wanted
Best regards
Re: New Theme "Funky" soon to be released. Feedback wanted
Hi Julian,
I love your theme it look fantastic, I also like this theme as well...
Is this theme available???, and I love your expandable menus...
Ron
Re: New Theme "Funky" soon to be released. Feedback wanted
Re: New Theme "Funky" soon to be released. Feedback wanted
Hi,
I have had a go at making sideblocks transparent. I have
.sideblock {
margin-bottom: 7px;
width: 100%;
filter:alpha(opacity=70);
-moz-opacity:.40;
opacity:.40;
}
This works, however, any text or links also become slightly transparent too. How would I go about keeping them in full colour like in the funky themes?
Thanks,
Mike
Re: New Theme "Funky" soon to be released. Feedback wanted
Course menu
YUI course menu
Cheers, Chad

Re: New Theme "Funky" soon to be released. Feedback wanted
What would cause this to happen?
I followed the same steps as I did with the first installation.

Re: New Theme "Funky" soon to be released. Feedback wanted
Alex,
did you install the parent theme funky or just funky_red ? (parent theme must be installed)
Another explanation could be config.php (wrong wwwroot or dirroot or empty rows at the end of config.php). I have seen css broken in moodle 1.8 also when I edited moodlelib.php or some other lib files with notepad (editing with wordpad did not break the code)
Re: New Theme "Funky" soon to be released. Feedback wanted
thanks for that mate, i was stupid enought to not enclude the parent theme. all seams gravy now.
however im still having issues with IE6, with the latest version of funky?

Re: New Theme "Funky" soon to be released. Feedback wanted
Did you check this (from previous post):
If moodle is not in web root, you must also change in styles_ie6.css paths /theme/ to "real" paths like /moodle/theme/ ?
Which file directly controls this?
As I said before, it works fine with another moodle I have on 1.8.2
Re: New Theme "Funky" soon to be released. Feedback wanted
have you got the parent theme uploaded?
Re: New Theme "Funky" soon to be released. Feedback wanted
Yes I have uploaded the parent theme.
Yes I have read the previous posts relating to paths, but I will read them again to see if I have missed anything. I am having the same problem with IE, Firefox and Safari on several different machines.
Re: New Theme "Funky" soon to be released. Feedback wanted
is anyone else having this problem?

just like to add, i love this theme :D
Re: New Theme "Funky" soon to be released. Feedback wanted
Re: New Theme "Funky" soon to be released. Feedback wanted
Will hopefully remember to do so tomorrow when I get back to work.
If I forget again..will you thump me occasionally?
Re: New Theme "Funky" soon to be released. Feedback wanted
IE6 is too buggy and needs all kinds of hacks and tuning to work properly so in the future it could be just easier to create totally different theme for IE6 (using styles_ie6.css) without png-alpha-filters, just gif or jpg background images or "normal" opacity outside other divs...and IE6 has too many problems with z-index ("layers" hide other layers and you should know correct order of layers for all divs, tables, forms, images etc) and absolute positioning. Z-index only works on elements that have been positioned and it is too hard to give both position and stack order of all elements only for IE6...
For example login block and course view (and all areas that may need editor or links) work better without extra layers over them - but they look so fabulous...
Re: New Theme "Funky" soon to be released. Feedback wanted
im back with more browser issues, this time firefox.

Re: New Theme "Funky" soon to be released. Feedback wanted
Re: New Theme "Funky" soon to be released. Feedback wanted
The URL has changed, here is the new address:
http://playpen.moodle.com.au/moodle/downloads/funky.zip