by Pete Harris
First uploaded 499 days ago
0
Recommendations
Summary:
Simple BlackBlueTech has been created as a starting point for theming - so you can see the elements that go into making a theme plugin, and how to override the default avatars, group avatars and file repository icons.
Full description:
Simple BlackBlueTech Theme (Edit your project's description!)
Simple BlackBlueTech has been created as a starting point for theming - so you can see the elements that go into making a theme plugin, and how to override the default avatars, group avatars and file repository icons.
Requirements:
Elgg v1.1
Once installed to your /mod directory, go to Tool Administration, use the new up/down/top/bottom function to move the theme to the bottom of the plugin list (so that it loads last).
It currently contains skins for the following plugins:
• all core plugins (profile, groups, admin stuff etc)
+
• blog
• bookmarks
• file
• friends
• messageboard
• messages
• pages
• status

@DrakonPrime, Sorry - I don't see any difference between the two css snippets!
Also, what error does this address? More information would be helpful.
Thanks.
Pete Harris 426 days ago
float:left: ... colon rather than semicolon.
Phil 426 days ago
Any chance this could be adapted for 1.5?
I did install the theme but found the dashboard was not showing correctly. Admin and settings were showing below dashboard and tools instead of being alongside them.
I'm a coding virgin, so have no idea how to fix it myself.
Any help would be appreciated, thank you. :)
Elle 351 days ago
This looks sweet!!!...but one thing i'm having the same issue as above..help will much apreciated!.thank you!..
jayster 298 days ago
If you are looking for a guide on how to upgrade this pre v1.5 theme to v1.5 have a look at this documentation.
Thomas Day 298 days ago
i have tried converting this to 1.5, no luck...... has anyone converted this that would br willing to send me the theme or post file here? or i would pay someone to convert it for me..
thanks
mckenzie 226 days ago

DrakonPrime
Profile
Friends
Friends of
Pages
Plugins
Found an error
in views/default/groups/css.php
Line 29
#groups_info_column_left {
float:left:
width:465px;
margin-left:220px;
}
should be:
#groups_info_column_left {
float:left;
width:465px;
margin-left:220px;
}
DrakonPrime 427 days ago