GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   newb html problem...please help... (https://gfy.com/showthread.php?t=464258)

wedouglas 05-05-2005 09:39 PM

newb html problem...please help...
 
Im using dreamweaver and i created a table and set its height and width values. when i type and it hits the edge of the table it makes the table expand rather than going down to the next line...wtf is wrong with my table?

DateDoc 05-05-2005 09:42 PM

post the html

ry0t 05-05-2005 09:43 PM

It's hard for me to explain here but two things I suggest is worry about the text after you have written it all then space the table correctly. If you're saying it will not go in paragraph form and it's all on one line that's because you have it set to "preformatted" and you should set it to "paragraph" and it will write correctly. Still worry about the spacing after you have the words written.

wedouglas 05-05-2005 09:47 PM

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
</head>
<body>
<table width="500" heigth="500" border="0">
<tr width="500" height="500" border="0">
<td width="500" height="500" border="0">
<img src="http://www.helpmyhtml.com/myhtmlisshitty/slice.jpg">
this text stays on one line and keeps getting longggggggggggger
</td>
</tr>
</table>
</body>
</html>

MGPspots 05-05-2005 09:50 PM

Not sure what u expect to happen it's a table with a single row and single cell which is set to 500px width. The width is therefore 500px...

wedouglas 05-05-2005 09:51 PM

well i want to just fill up 500x500 with text. however, when i reach the end of the table (ie the 500th px) it doesnt go to the next line, it makes the table wider.

ry0t 05-05-2005 09:52 PM

Yeah man you're going to have to play around with a lot more you have to learn a lot more. You should make more columns and put things in their own columns.

wedouglas 05-05-2005 09:55 PM

no no, i know what im doing. this has never happened before....my other tables work fine

MGPspots 05-05-2005 09:56 PM

Quote:

Originally Posted by wedouglas
well i want to just fill up 500x500 with text. however, when i reach the end of the table (ie the 500th px) it doesnt go to the next line, it makes the table wider.

I definitely don't get that behaviour. The width is fixed in the table, row and cell tags. Is it just the design mode you're working in, try working in split mode so you can see the code as well. If the 500px width attributes don't change then the width isn't changing, also try putting a border on it and hitting f12 to see it in the browser - does the table size change?

Adultnet 05-05-2005 09:57 PM

<td width="500" height="500" border="0"> just remove the width and the height of the cell and set the line to this <td> and it will work for you mate... :)

wedouglas 05-05-2005 09:58 PM

http://www.perfectforporn.com/maximumpills.html

view that page and its source...that is not correct

Adultnet 05-05-2005 10:01 PM

this will work for you...:
<table width="176" heigth="500" border="0">
<tr>
<td>
<img src="http://www.helpmyhtml.com/myhtmlisshitty/slice.jpg">
this text stays on on das a asd as dasasd sa das dsa daddas asd asd as dasd asd
asd asd asd as as as dasd as asda das asdasdas das asd as asdasa asas</td>
</tr>
</table>
Anyways you have many settings that you don't really need setup here... :pimp

pornpf69 05-05-2005 10:05 PM

your code...
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
</head>
<body>
<table width="500" heigth="500" border="0">
<tr width="500" height="500" border="0">
<td width="250" height="500" border="0">
<img src="http://www.perfectforporn.com/maximumpills/slice.jpg">hdfkhasdlkfhasooooooooooooooooo kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk kkkk</td>
<td width250 height="500">dgdgsdfllllllllllllllllllllllllllllll lllllgdsf</td>
</tr>
</table>

</body>
</html>

try like this
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
</head>
<body>
<table width="500" heigth="500" border="0">
<tr>
<td width="250">
<img src="http://www.perfectforporn.com/maximumpills/slice.jpg">h d f k h a s d l k f h as o o o o o o oo o oo o oo o o o kk kkkkkkkk kkkkkkkk kkk kkkkkkkkkkk kkkkkkkkkkkkkkk kkkkkkk</td>
<td width="250">dg dgs dflllllllll llllllllllllllllllll llllllgdsf</td>
</tr>
</table>

</body>
</html>

wedouglas 05-05-2005 10:06 PM

problem solved...to some degree....apparently if you have a word that is longer than the width of the table it will expand it....this makes no sense...

wedouglas 05-05-2005 10:13 PM

oh almost forgot. thanks for the help :thumbsup

MGPspots 05-05-2005 10:18 PM

Quote:

Originally Posted by wedouglas
problem solved...to some degree....apparently if you have a word that is longer than the width of the table it will expand it....this makes no sense...

yep html will do that as it can't do on the fly hyphenation.

Diligent 05-05-2005 10:19 PM

Whoa..!

Could it be something as simple as spelling..? I don't know if it's the case here, but check this:

<table width="500" heigth="500" border="0">
<tr width="500" height="500" border="0">

Notice how You have "height" spelt differently in those two lines?
The correct spelling is "height", not "heigth".

These kind of errors are WAY to easy to get when coding tired, dealt with that a few times myself :upsidedow

pornpf69 05-05-2005 10:19 PM

Quote:

Originally Posted by wedouglas
problem solved...to some degree....apparently if you have a word that is longer than the width of the table it will expand it....this makes no sense...

it certainy makes sense....if you add an image that is bigger than the table width it will also expand....

TheSenator 05-05-2005 10:20 PM

Just relax.....don't hit the tables so hard.....
All you need is one click.

iwantchixx 05-05-2005 10:25 PM

man, just set the CELL width of it.

Example

[CODE]
<table align="center">
<tr>
<td width="600">TEXT GOES HERE</td>
</tr>
</table>

Sosa 05-05-2005 10:26 PM

la la la!


All times are GMT -7. The time now is 07:28 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123