HTML [message #301552] |
Thu, 06 December 2007 20:30 |
_SSnipe_
Messages: 4121 Registered: May 2007 Location: Riverside Southern Califo...
Karma: 0
|
General (4 Stars) |
|
|
i did this
<center>
<font size="4"><font color=white>
<br>
<br>
<a href="" target="_blank"><img src="" border="0" alt="Photo Sharing and Video Hosting at Photobucket"></a>
<br>
<br>
TEXT HERE
<br>
<br>
<a href="" target="_blank"><img src="" border="0" alt="Photo Sharing and Video Hosting at Photobucket"></a>
</font></font></center>
<br>
<br>
pretty much picture then space then text then space then picture
but how can i put a white boarder around the whole thing and not just the pictures alone?
|
|
|
Re: HTML [message #301569 is a reply to message #301552] |
Fri, 07 December 2007 00:37 |
|
Goztow
Messages: 9737 Registered: March 2005 Location: Belgium
Karma: 13
|
General (5 Stars) Goztoe |
|
|
Put everything in a table and enable the border around the table:
<center>
<table border="1" bordercolor="white">
<td>
<font size="4"><font color=white>
<br>
<br>
<a href="" target="_blank"><img src="" border="0" alt="Photo Sharing and Video Hosting at Photobucket"></a>
<br>
<br>
TEXT HERE
<br>
<br>
<a href="" target="_blank"><img src="" border="0" alt="Photo Sharing and Video Hosting at Photobucket"></a>
</font></font></center>
<br>
<br>
</td>
</table>
I didn't test this code, but that should do it.
You can find me in The KOSs2 (TK2) discord while I'm playing. Feel free to come and say hi! TK2 discord
|
|
|
|
Re: HTML [message #303781 is a reply to message #301552] |
Mon, 17 December 2007 14:01 |
|
light
Messages: 988 Registered: January 2005
Karma: 0
|
Colonel |
|
|
Use CSS, tables are very 1990s.
Disclaimer: I haven't tested this but I'm pretty sure it'll work.
<style>
.container {
width: 500px;
margin-left: auto;
margin-right: auto;
border: 1px solid #FFF;
}
.container p {
margin-top: 1ex;
margin-bottom: 1ex;
}
</style>
<div class="container">
<a href="" target="_blank"><img src="" border="0" alt="Photo Sharing and Video Hosting at Photobucket"></a>
<p>TEXT HERE</p>
<a href="" target="_blank"><img src="" border="0" alt="Photo Sharing and Video Hosting at Photobucket"></a>
</div>
[Updated on: Mon, 17 December 2007 14:01] Report message to a moderator
|
|
|
Re: HTML [message #304708 is a reply to message #301552] |
Fri, 21 December 2007 08:18 |
_SSnipe_
Messages: 4121 Registered: May 2007 Location: Riverside Southern Califo...
Karma: 0
|
General (4 Stars) |
|
|
cool when i have time ill try it out (on the way to school!)
|
|
|