Send private message

You must be logged in to send a private message.

Friends

No friends yet.

Group membership

  • Beginning Developers

    Beginning Developers

    This space is for newcomers, who wish to build a new plugin or to customize an existing one to their liking
  • Professional Services

    Professional Services

    Get / offer professional help on Elgg; like customization, design, development, setup, hosting... Illegal trades are not allowed.
  • Plugin Development

    Plugin Development

    Talking about how to write plugins

Activity

  • Eilicic added a new discussion topic Plugin for changing profile avatar/icon size in the group Plugin Development
    Hi! I can't find a plugin that allows you to change the default size of avatars/icons. I would love to be able to change the size of the profile avatar/icon. Right now the default size is 200 x 150px I would like to make it bigger. As I have...
    • (sorry to clog this thread up, but it may help others anyway).

      I found out that adding a new picture to a profile now creates the larger one.


      image

      But it doesnt display on the profile.

      image

      currently i have restored engine/lib/views to default, put team webgalli's code in the start.php of my theme and i have also changed the css in icon.php which ive added to my theme.

      /* ***************************************
          AVATAR ICONS
      *************************************** */
      .elgg-avatar {
          position: relative;
          display: inline-block;
      }
      .elgg-avatar > a > img {
          display: block;

      }

      .elgg-avatar-tiny{
          width: 100px;
          height: 100px;
          
      }

      .elgg-avatar-tiny > a > img {
          width: 100px;
          height: 100px;
          
          /* remove the border-radius if you don't want rounded avatars in supported browsers */
          -webkit-border-radius: 3px;
          -moz-border-radius: 3px;
          border-radius: 3px;
          
          -moz-background-clip:  border;
          background-clip:  border;

          -webkit-background-size: 100px;
          -khtml-background-size: 100px;
          -moz-background-size: 100px;
          -o-background-size: 100px;
          background-size: 100px;
      }
      .elgg-avatar-small > a > img {
          width: 100px;
          height: 100px;
          
          /* remove the border-radius if you don't want rounded avatars in supported browsers */
          -webkit-border-radius: 5px;
          -moz-border-radius: 5px;
          border-radius: 5px;
          
          -moz-background-clip:  border;
          background-clip:  border;

          -webkit-background-size: 100px;
          -khtml-background-size: 100px;
          -moz-background-size: 100px;
          -o-background-size: 100px;
          background-size: 100px;
      }
      .elgg-avatar-medium > a > img {
          width: 100px;
          height: 100px;
      }
      .elgg-avatar-large > a > img {
          width: 200px;
          height: 200px;
      }


      Any help?

    • i made a plugin to do this, check my profile

  • Eilicic joined the group Plugin Development
  • Eilicic replied on the discussion topic Single Sign On/integration
    Thank you very much Team Webgalli! I will check that out:)   Regards, Eilicic view reply
  • Eilicic added a new discussion topic Single Sign On/integration in the group Elgg Technical Support
    I have a food recipe website with very limited user profile features. I would love to be able to use Elgg as the profile for our users instead of the existing one. Today our users need to be signed in to be able to: submit recipe, leave comments,...
  • Eilicic joined the group Beginning Developers
  • Eilicic joined the group Professional Services