iframe problems

liunx

Guest
alright i fonally got a good host and my own domain<br />
<!-- w --><a class="postlink" href="http://www.etcgalore.com">www.etcgalore.com</a><!-- w --><br />
<br />
the table to the left of the navigation table is supposed to be a frame my code for it is <br />
<iframe src=http://www.htmlforums.com/archive/index.php/"/welcome.html" height="100%" width="100%" frameborder="0"></iframe><br />
thats inside the <td> tags i have tried src=http://www.htmlforums.com/archive/index.php/"http://www.yahoo.com" even and it doesnt work<br />
any ideas would be appreciated<!--content-->perhaps try it without the / infront of welcome.html ?<!--content-->that didnt do it<!--content-->hmm idk what it would be. works fine for me. im using netscape. <br />
what r u using?<!--content-->i am using IE6<!--content-->it's because you've set your iframe to 100%, fine but you td only has a width, so as it stands your iframe is 100% of the height of the td which is nothing! give the td a height :)<!--content-->thanx man that fixed it i knew it was something simple, and instead of starting another thread i got another question, if you look at my page <!-- w --><a class="postlink" href="http://www.etcgalore.com">www.etcgalore.com</a><!-- w --> and u see the news table on the left, well that is aligned to the left so there is a big space in between that and the frame, how do i align it to the right so it is right next to the frame table? does that make sense?<!--content-->if the table in question is nested inside a larger table, add this to the cell of the larger table that contains the table in question (did that get confusing, i confused myself lol)<br />
<br />
<td style="text-align:right;"><br />
<br />
or you can throw it into your stylesheet<br />
<br />
td.1 {text-align:right;} :)<!--content-->
 
Back
Top