View Full Version : Image Question.....what do I do?


Anime Goddess
02-06-2003, 09:55 PM
Hi there
Okay on my web page I am using this code:

<html>
<head>
<title>Anime Frenzie</title>
</head>
<frameset cols="160,*"border=0 frameborder=0 framespacing=0>
<frame src="my websites name" name="leftside" scrolling=no noresize>
<frameset rows="85,*">
<frame src="top.html" NAME="top"scrolling=no noresize>
<frame src="http://www.geocities.com/animefrenzie/main.html" name="rightside">
</frameset>
</frameset>
<body>
</body>
<noframes>
<a href="your main page.html">Click Here</a>
</noframes>
</html>

Now I am trying to put a pic in the top frame. I already tried adding a pic but the pic doesn't seem to fit in it? And I tried to make the pic smaller and that didn't work. So I was woundering how do I get a pic to fit in there??

Alcy
02-07-2003, 12:09 AM
Is the picture the only thing you want in the frame?

Try setting the image as the background of the page it's on, or setting the margins to zero:

<body topmargin=0 leftmargin=0 bottommargin=0>

pb&j
02-07-2003, 05:22 AM
Originally posted by Anime Goddess
<frameset cols="160,*"border=0 frameborder=0 framespacing=0>

<frame src="top.html" NAME="top"scrolling=no noresize>

You may want to make sure ther is a space between that quote and the word BORDER. Also with that second part and SCROLLING.

Are you trying to place the image code in instead of the FRAME tag. That is doable, but the frame dimensions should be raised by about 8 pixels to allow for proper spacing.

Or are you putting the image on a web page and showing it within frames normally? Make sure to kill the page margins to have the image fit into the frame better. Try putting this into the starting BODY tag of the page holding your image...

topmargin="0" leftmargin="0" marginwidth="0" marginheight="0"

Anime Goddess
02-08-2003, 02:06 AM
Okay i am trying to put a pic in the frame. If you go to my site I put up the pic although it does not fit in the area. And I did add the topmargin="0" leftmargin="0" marginwidth="0" marginheight="0" thing but it doesn't seem to work???

www.geocities.com/animefrenzie

Alcy
02-08-2003, 04:52 AM
<frameset rows="85,*">

What is that ^ 85? Your image is more than 85 pixels tall. That number should be equal to the height of your image.