Picture

Status
Not open for further replies.

Reesey

New Member
Messages
101
Reaction score
0
Points
0
Anyone tell me what i have to edit with this code to make it show up on my homepage? www.orderofthelight.x10hosting.com

<img src='images/news/' style='margin:5px' align='center'>http://i191.photobucket.com/albums/z138/Jim_dude/WoWScrnShot_082607_151654.jpg<img src='images/news/' style='margin:5px' align='center'>
 

Chris73

New Member
Messages
5,356
Reaction score
1
Points
0
<img src='images/news/' style='margin:5px' align='center'>http://i191.photobucket.com/albums/z138/Jim_dude/WoWScrnShot_082607_151654.jpg<img src='images/news/' style='margin:5px' align='center'>


Try the one below.



<img src='http://i191.photobucket.com/albums/z138/Jim_dude/WoWScrnShot_082607_151654.jpg' style='margin:5px' align='center' />
 
Last edited:

Mooseman

New Member
Messages
89
Reaction score
0
Points
0
You can also do the styling in CSS, which is the 'correct' way to do it nowadays

CSS :
.wow{margin:5px;text-align:center;}

HTML:
<img class="wow" src="http://i191.photobucket.com/albums/z138/Jim_dude/WoWScrnShot_082607_151654.jpg" alt="alternative image text here"/>
 
Status
Not open for further replies.
Top