PDA

View Full Version : border colours and imageready


reubenb
03-20-2004, 11:25 AM
hi there,
i just exported my website into imageready then into a .html file.
now when i use frontpage or dreamweaver (mx2004) i want to make the OUTSIDE of the frame a white colour (#ffffff) but when i do this it makes a border around the WHOLE frame with borders around each image and looks stupid.

how can i make it so there is just a border on the outside of the frame?
any ideas?

thanks

Antoniohawk
03-20-2004, 10:01 PM
<html>
<body>
<frameset cols="50%,50%" border="1" bordercolor="#FFFFFFF">
<frame src="frame1.html" />
<frame src="frame2.html" />
</frameset>
</body>
</html>

reubenb
03-20-2004, 10:34 PM
errr
thanks but no thanks.. cos i hate frames.
there must be a way to do it without frames??

Antoniohawk
03-21-2004, 01:27 AM
I don't understand, in your post you said you wanted a border around a frame.

i want to make the OUTSIDE of the frame a white colour (#ffffff) but when i do this it makes a border around the WHOLE frame with borders around each image and looks stupid.

reubenb
03-21-2004, 01:30 AM
ahcrap, sorry i meant to say
i want to make a border around the TABLE

sorry

Antoniohawk
03-21-2004, 01:54 AM
table {
border: 1px solid #FFF;
}

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

reubenb
03-21-2004, 07:32 AM
thanks