Help with pictures

Status
Not open for further replies.

letasega

New Member
Messages
5
Reaction score
0
Points
0
Hi, can anyone tell me how to get my pictures on my website to an exact location, tables dont work since its not enough space.

Yes I've tried to search for an answer, but i havn't found anything to use.
 

VPmase

New Member
Messages
914
Reaction score
0
Points
0
<img src="SOURCE" alt="blah" width="##" height="##" style="position:absolute; top:100px; left:40%;" />
 

kbjradmin

New Member
Messages
512
Reaction score
2
Points
0
you also could have done this:

Code:
<head>
<style>
img.pictureid{
width: ##px;
height: ##px;
position: absolute;
top: ##px;
left: ##px;
}
</style>
</head>
<body>
<img src="SOURCE" alt="blah" class="pictureid" />

it's just a little more organized, besides, the height and width attributes in the img tag is a little unprofessional. :)
 

LHVWB

New Member
Messages
1,308
Reaction score
0
Points
0
This issue seems to be resolved, if the author has any questions about this issue then they can reopen this thread.

* Closed *
 
Status
Not open for further replies.
Top