Where can i find this part?

Where can i find the User administration part.

The index of it. I want to change the looks of it?

Can anyone please help me out?

  • @Cash

    Id di search, couldn't find it. Also try to figure it out with firebug. Still couldn't find where it was @ so i can change the layout.

  • Did you try using the techniques documented on that page?

  • @Cash

    Yes I did, still couldn't find it :-(

  • What tool are you using to search? You need to either use grep or an editor that has a built-in search through files option.

  • @Cash

    Thnx for teh tip :-)

    Small question. I'm trying to center my profile image. Tried the hole day to get it good, this script.

    Still can't find how to center it.

    <div class="usericon">     
            <?php
                    if ((isadminloggedin()) || (!$vars['entity']->isBanned())) {
             ?><a href="<?php echo $vars['entity']->getURL(); ?>" class="icon" ><?php
                    }
                   
            }
           
            ?><img src="<?php echo $vars['entity']->getIcon($vars['size']); ?>" border="0" <?php echo $align; ?> title="<?php echo htmlentities($vars['entity']->name, ENT_QUOTES, 'UTF-8'); ?>" <?php echo $vars['js']; ?> /><?php

                    if (!$override) {
           
            ?></a><div class="sub_menu">
                    <a href="<?php echo $vars['entity']->getURL(); ?>"><h3><?php echo $vars['entity']->name; ?></h3></a>
                    <?php
                            if (isloggedin()) {
                                    $actions = elgg_view('profile/menu/actions',$vars);
                                    if (!empty($actions)) {
                                           
                                            echo "<div class=\"item_line\">{$actions}</div>";
                                           
                                    }
                                    if ($vars['entity']->getGUID() == $vars['user']->getGUID()) {
                                            echo elgg_view('profile/menu/linksownpage',$vars);
                                    } else {
                                            echo elgg_view('profile/menu/links',$vars);
                                    }                                      
                            } else {
                                    echo elgg_view('profile/menu/links',$vars);
                            }
                    ?>
            </div> 
    </div>

  • If you're using a good search tool, it should be really easy to find the main view of the user administration page. I found it in two searches starting with a search for "User Administration".