Log In · Register

 
Placing additional images beneath the profile picture
Reidar
post Sep 1 2006, 02:24 AM
Post #1


Vae Victis
******

Group: Official Member
Posts: 1,423
Joined: Sep 2006
Member No: 460,227



Greetings.

I'd like to have two or three small thumbnails lined up beneath my profile picture. I know the html for the thumbnails and the images, but I'm uncertain as to where I would place this so it's positioned where I want it to be (in the profile).

Much appreciated.
 
 
Start new topic
Replies
threepointone
post Sep 5 2006, 06:03 PM
Post #2


Senior Member
****

Group: Member
Posts: 122
Joined: Feb 2005
Member No: 106,057



the instructions are in the code.
CODE
<script language="JavaScript" type="text/javascript">
<!--
/*
this code inserts images directly below your profile image
by threepointone @ createblog.com
*/
/*
Note: to add more than one image, simply copy & paste another instance of this script, and modify as necessary. The images will be inserted BACKWARDS from the order of the scripts. */



var myimg=document.createElement("img")
myimg.src="http://www.xanga.com/images/xangalogo.gif" // set the URL here
myimg.style.height="60px" // set image height here (highly recommended, but not necessary)
myimg.style.width="200px" // set image width
// if you know javascript, you can also set whatever styles, properties, etc... for the image here


var tgtelement=document.getElementById("ProfileModule1_lblImage")
tgtelement.parentNode.insertBefore(myimg, tgtelement.nextSibling)
tgtelement.parentNode.insertBefore(document.createTextNode(" "), tgtelement.nextSibling)



-->
</script>
 

Posts in this topic


Closed TopicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members: