Would Like To Add An Image In A Specific Location Of My Profile..., Want to add an image with an border that makes the image look embed in |
Would Like To Add An Image In A Specific Location Of My Profile..., Want to add an image with an border that makes the image look embed in |
![]()
Post
#1
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Member Posts: 6,349 Joined: Aug 2006 Member No: 455,274 ![]() |
What's up guys, well I've been lookin at the scripts that I have and been trying to get an idea of how to create a table. Why you may ask? I believe I need to create a table in order to insert something into it, correct? Such as text or image...
Basically I'd like to add an image right between the table/text where it reads, "F*ck society and everyone in it" and where it reads "Vitals, interests, and links" There's a nice open spot right there so I'd like to add an image there. When I add the image I'd like to put a border around it to make it seem as if it's embedded into the page, give it a little hint of a 3D look. Is this even possible? Thanks in advance! |
|
|
![]() |
*This Confession* |
![]()
Post
#2
|
Guest ![]() |
okay make a div and put the image in it.
CODE <div class="image" style="position: absolute; left:0px; top:0px; width:000px; height:000px; overflow: hidden;"> <img src="http://i62.photobucket.com/albums/h116/Tamacracker/Meandbarbara2.jpg"> </div> K in this code you need to go back and change the height and width of the image and then change the top and left to position it. If you need help positioning read this: Positioning made easy? quick lesson on "position: relative" top: -45px = moves up 45px top: 45px = moves down 45px left: -15px = moves left 15px left: 15px = moves right 15px quick lesson on "position: absolute" top: 0% = moves to top of page top: 50% = moves to middle of page top: 100% = moves to bottem of page left: 0% = moves to left of page left: 50% = moves to center of page left: 100% = moves to right of page margin-left: -15px = moves left 15px margin-left: 15px = moves right 15px margin-top: 45px = moves down 45px margin-top: -45px = moves up 45px |
|
|
![]() ![]() |