Info

Category: themes
Licence: GNU General Public License (GPL) version 2
Updated: 31 days ago
Downloaded: 2365

Releases

Latest: 1.0

Previous releases:
None
More projects by Pete Harris:

0

Recommendations

Summary:

PurpleRounded has rounded boxes on the widget pages (profile and dashboard), and rounded title areas on all other pages.

Full description:

Purple Rounded Theme (Edit your project's description!)

Release notes:

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 contains skins for all the plugins in the elgg v1.1 full package.

 

elgg theme example

cool! thanks

Jumanji 504 days ago

Wow Peter! I'm having a field day will all your new themes! Any chance of getting a Halloween theme by the end of the day for us USA trick-or-treaters?

kerryg 504 days ago

Hi,
May I have a view on the collection of theme you had developed?
peter

peter7788 503 days ago

hey peter great theme just one question i searched all over but cant find where to change the main white background colour ... behind where the profile fields are at ? please let me know where i need to edit to make changes to that particular colour ... thanks ...

madshark 503 days ago

@madshark, the profile area container div has an id of profile_info you can add your background colour to that. It is referenced in the theme plugin main css file views/default/css.php

Pete Harris 503 days ago

ah i have to add it in right got it now ... thanks much pete !

madshark 502 days ago

Hi,

Thanks for this theme - it's a very clear tutorial for how to modify Elgg! 

I think I found a bug though.  If you login, minimize the spotlight, logout, and login again, you get a white screen.  You have overridden pageshell.php (I'm guessing) to show the spotlight even for logged out users (a nice idea), but something dies with the combination of a closed spotlight and no active user.  I'll poke around a bit to see if I can find a fix.

AquaTerm 394 days ago

Hi AquaTerm, you're right - I tried to be clever with the spotlight, but it doesn't work.

To reinstate the default (and working correctly) spotlight add

<?php
    if(isloggedin()){
?>
        <!-- spotlight -->
        <?php echo elgg_view('page_elements/spotlight', $vars); ?>
<?php
    }
?>

Pete Harris 393 days ago

.. add it to the pageshell footer instead of just the <?php echo elgg_view('page_elements/spotlight', $vars); ?> that is there now.

Pete Harris 393 days ago

Pete,

It turns out there's been quite a discussion about this topic:

http://groups.google.com/group/elgg-development/browse_thread/thread/e445cdff65c297fc/248e1f0332901f97?#

Rather than reinstating the missing code, I just deleted pageshell.php from the theme, as the only difference between the theme version and the standard was this code.  Once I did that things worked fine.

Mike

AquaTerm 393 days ago