picture lay out problem and other stuff

windows

Guest
Ok, here's the deal. I'm building a webpage--> <!-- m --><a class="postlink" href="http://www.angelfire.com/super/zestyz_17">http://www.angelfire.com/super/zestyz_17</a><!-- m --> and if you click on the picture link to the right, then click on "Me", I have a table with 4 pictures to a row with those border things around them. Is what I'm trying to :confused: figure :confused: out, is how to seperate those pictures- if possible -while keeping the borders there as well. I've tryed everything I could think of but nothing has worked. Another question, if you go to this webpage ---> <!-- m --><a class="postlink" href="http://home1.gte.net/res0093j/index.htm">http://home1.gte.net/res0093j/index.htm</a><!-- m --> , you'll see that when you scroll up and downm the background stays where it is at, but the other stuff moves up and down. Would anyone know how to do all this? I looked at the source stuff but that didn't help me at all. Anyways, if anyone as info on this stuff, I'd like to hear from ya. <br />
(If I didn't explain something good enough, just tell me what part you guys don't understand and I'll try to explain better) Thanks!:rocker:<!--content-->'watermarking'- or as i have always called it for backgrounds is easy put bgproperties="fixed" in your body tag. <br />
<br />
For the first question, stick in cellpadding=20<br />
change 20 to acheive desired effect.<!--content-->For the first question, stick in cellpadding=20 <br />
change 20 to acheive desired effect.<br />
<br />
should read:<br />
<br />
For the first question, stick in cellpadding=20 in your TABLE tag. <br />
change 20 to acheive desired effect.<!--content-->hey, another oregonian ;)<br />
welcome z18 to the forums.<br />
<br />
yes what was said was correct. you have to make the cellpadding bigger than 5 as that is what you have now. also the bgproperties="fixed" in your body tag will only owrk in IE and I think in NS6. it will not work in NS4.xx but that is just for your info.<!--content-->thank you guys so much for helping me. I appreciate it:cool: :rocker:<!--content-->If you are going to do a fixed backgrouns you are better off using the CSS attributes for complete control:<br />
<br />
<HTML><br />
<HEAD><br />
<TITLE> Fixed background using styles <TITLE><br />
<STYLE TYPE="text/css"><br />
BODY { background-repeat:no-repeat;background-attachment:fixed;<br />
background-position:left top;background-image:url(blah.jpg) }<br />
</STYLE><br />
</HEAD><br />
<BODY><br />
etc...<br />
<br />
The background-position can left/center/right for x axis and<br />
top/center/bottom for the y axis. With IE5.5 you can use a numeric value to <br />
specify the x/y co-ordinates in pixels<!--content-->
 
Back
Top