Hi I was just wondering if it is posible to add and image like a logo onto the landing page of elgg 1.7.11?
Any help would be apreciated.
Thanks
Tony
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by Raül Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
- Trajan@Trajan

Trajan - 0 likes
You must log in to post replies.This is certainly possible to do. The question is are you using the custom_index plugin? If you are it is much better.
If you can code html/php (just a little bit) you can do this.
go to elgg/mod/custom_index/views/default/canvas/layouts/new_index.php
Somewhere in there you need to add the html to call your image. I imagine you have it stored somewhere in your elgg folders. (Best to stick it in the plugin folder you are dealing with which is custom_index).
So upload the image to elgg/mod/custom_index/graphics folder
Now in your new_index.php file add the following wherever you want it to appear:
it will appear. You can also style it inline with <img style='' src='' /> etc. Be warned, after the echo there are double quotes, so anything inside those double quotes needs to be single quotes (or vice versa).
Enjoy!