If you want to host pictures of your people on your IFAPortal website you can do it, and within each persons biography too. It just requires the addition of a simple piece of HTML code.
Before you start this, upload the images you want to use to the images folder in your website's File Manager.
Assume this is your biography at the moment
John has been with IFA Ltd for twenty years, he is qualified and able to advise on all aspects of pensions, investments and mortgages.
You would need to add this script before it, replacing yourdomain.co.uk with your website domain, and $portalnumber with your portal reference number, and yourpicture.gif with the image you want to use from the images folder of your file manager.
This is the script:-
<div style="float:left;padding:5px;"><img src="http://www.yourdomain.co.uk/Portals/$portalnumber/Images/yourpicture.gif" /></div>
You can find your portal reference number, by visiting your file manager, and clicking the upload button. You will see the number at the end of the Portal Root string at the top of the page.
For example, if we did this on IFA Portals website it would look like this.
<div style="float:left;padding:5px;"><img src="http://www.ifaportals.co.uk/Portals/0/Images/pictureofjohn.gif"/></div> John has been with IFA Ltd for twenty years, he is qualified and able to advise on all aspects of pensions, investments and mortgages.
You should resize your images before you add them, but minor resizing can be done by setting the height and width attributes for the image. For example if we want to ensure a height and width of 200px we would use the following code
<div style="float:left;padding:5px;"><img src="http://www.ifaportals.co.uk/Portals/0/Images/pictureofjohn.gif" height="200" width="200" /></div>John has been with IFA Ltd for twenty years, he is qualified and able to advise on all aspects of pensions, investments and mortgages.