View Full Version : i need help ..


MoonliTxRosE
03-06-2005, 05:48 PM
I'm not sure if this is a table, or something else .. its for an update box .. the URL is www.pixelbee.net .. but my question is how did she put her border like that around her update box and seperate all of her writing and what not?? can anyone give me the code for it? thanks.

Seven
03-06-2005, 09:04 PM
It looks like it's all frames. Her code seems pretty messy to me, I don't know if all of it is neccessary. There are like 3 embedded frames.

jazzberry
03-07-2005, 12:25 AM
I'm not sure if this is what you want but it looks like she did this

<table border="1" color="#000000">
<tr><td>Subject/Date</td></tr>
<tr><td>Update Content</td></tr>
</table>

MoonliTxRosE
03-09-2005, 11:17 PM
I know all that part, i just need to know how she put the picture border around it like she did??? should I just make a table, and then make a border to put around it and just place it around it??

brodeur
03-14-2005, 02:49 AM
use css to make the image background to include the "box". Then make an iframe and position it so that it fits inside the frame. I did it here:

you can explain how you did it, and post examples of coding but i don't see why you have to post the link ~ mod

if you need me to elaborate, ask.

brodeur
03-14-2005, 06:38 PM
um.. well i made another one with an ipod for the backing and a textbox inside (pm me for url). the coding was like this:

<html>
<head>
<style type="text/css">
body { background-image: url(/pics/ipod.jpg);
background-color: #ffffff;
background-repeat: no-repeat;
background-position: top left;
backgound-attachment: fixed; }
</style>
</head>
<body>
<IFRAME name="screen" src="http://www.hinhey.com/screen.html" width=256 height=170 marginwidth=0 marginheight=0 frameborder=0 scrolling=auto style="position:absolute; top:82px; left:70px;"></IFRAME>
</body>
</html>

MoonliTxRosE
03-16-2005, 09:28 PM
this is really confusing .. cause like, its picture borders, not just regular borders .. go back to www.pixelbee.net , and look at her update box. its picture border .. i realized that she used I frames with tables, but thats another hard part to ..

pb&j
03-17-2005, 02:07 AM
take an image like so...

http://www.pixelbee.net/images/candee/news.gif

make it the background of a table which is the correct width and height like so...

<table border="0" width="338" height="360" bgcolor="#4A1149" background="http://www.pixelbee.net/images/candee/news.gif" style="background-repeat: no-repeat;" cellpadding="0" cellspacing="0"><tr><td>

some content here such as an iframe or whatever.

</td></tr></table>

clear as mud?