Pete Harris
247 days ago
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 173 days ago
float:left: ... colon rather than semicolon.
Phil 173 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 99 days ago
This looks sweet!!!...but one thing i'm having the same issue as above..help will much apreciated!.thank you!..
jayster 46 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 45 days ago

DrakonPrime
Profile
Friends
Friends of
Pages
Plugins & themes
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 175 days ago