Jump to content

Why doesnt "Login to reply" appear at bottom of page? It should appear at bottom instead.


rain13

Recommended Posts

I cant figure out why does "reply" or "Login to reply" appears at right side of page. It should appear at the bottom of page instead. Preview: http://autoit.net.ee/2010/post.phpCode:

<?phpecho'<style TYPE="text/css">blockquote {	background: #ebebeb none 6px 8px no-repeat;	border: 1px solid #dbdbdb;	font-size: 0.95em;	margin: 0.5em 1px 0 25px;	overflow: hidden;	padding: 5px;}a:link	{ color: #0000CC; text-decoration: none; }a:visited	{ color: #0000CC; text-decoration: none; }a:hover	{ color: #3333FF; text-decoration: underline; }a:active	{ color: #3333FF; text-decoration: none; }.postprofile {	margin: 5px 0 10px 0;	min-height: 80px;	color: #00;	border-left: 1px solid #000000;	width: 22%;	float: right;	display: inline;}.postbody {	padding: 0;	line-height: 1.48em;	color: #333333;	width: 76%;	float: left;	clear: both;}</style>';function GropuToString($GroupNR){	if ($GroupNR == 0){return "Banned";}	elseif ($GroupNR == 1){return "Registered user";}	elseif ($GroupNR == 2){return "Administrator";}}$singleQuete = "'";$dbuser="***";$dbpassword="***";$database="***";$tblName = "Users";mysql_connect("localhost",$dbuser,$dbpassword);@mysql_select_db($database) or die( "Unable to select database");$loggedin = false;if(isset($_COOKIE['User'])){	//echo($_COOKIE['User']);	//exit();	$UserData = explode("waaaaaaaaaaaaw",$_COOKIE['User']);	//echo "cookie".$UserData;	$result = mysql_query("SELECT * FROM ".$tblName.' WHERE UserName = "'.$UserData[0].'"');	if(mysql_num_rows($result)){		if ($UserData[1] == mysql_result($result,0,"UserPassword"))		{			if(mysql_result($result,0,"UserGroup") == 0){die("Your account have been banned!<br>Reason: ".mysql_result($result,0,"UserBanReason"));}			$loggedin  = true;		}	}else{		setcookie("User", "", mktime(12,0,0,1, 1, 1990));	}}function parsecode($Code, $preview = false){	global $database;	global $tblName;	global $UserData;	global $Title;	$UserName = substr($Code,15);	$UserEnd = strpos($UserName,'"');	$UserName = substr($UserName,0,$UserEnd );	$DateStart = strpos($Code,'date="');	$PostDate = substr($Code, $DateStart+6 );	$DateEnd = strpos($PostDate,'"');	$PostDate = substr($PostDate, 0 ,$DateEnd);	$TextStart= $DateStart+6+$DateEnd+2;	$Code = substr($Code , $TextStart);	$bbarray = array("[b]","[/b]","[i]","[/i]","[u]","[/u]");	$htmlarray = array("<b>","</b>","<i>","</i>","<u>","</u>");	$Code = str_replace($bbarray,$htmlarray,$Code);		while (preg_match_all('`\[(.+?)=?(.*?)\](.+?)\[/\1\]`', $Code, $matches)) foreach ($matches[0] as $key => $match) {			list($tag, $param, $innertext) = array($matches[1][$key], $matches[2][$key], $matches[3][$key]);			switch ($tag) {				case 'size': $replacement = "<span style=\"font-size: $param;\">$innertext</span>"; break;				case 'color': $replacement = "<span style=\"color: $param;\">$innertext</span>"; break;				case 'center': $replacement = "<div class=\"centered\">$innertext</div>"; break;				case 'quote': $replacement = "<blockquote>$innertext</blockquote>";break;				case 'lnk': $replacement = '<a href="' . ($param? $param : $innertext) . "\">$innertext</a>"; break;				case 'url': $replacement = '<a href="' . ($param? $param : $innertext) . "\">$innertext</a>"; break;				case 'img':					list($width, $height) = preg_split('`[Xx]`', $param);					$replacement = "<img src=\"$innertext\" " . (is_numeric($width)? "width=\"$width\" " : '') . (is_numeric($height)? "height=\"$height\" " : '') . '/>';				break;				case 'video':					$videourl = parse_url($innertext);					parse_str($videourl['query'], $videoquery);					if (strpos($videourl['host'], 'youtube.com') !== FALSE) $replacement = '<embed src="http://www.youtube.com/v/' . $videoquery['v'] . '" type="application/x-shockwave-flash" width="425" height="344"></embed>';					if (strpos($videourl['host'], 'google.com') !== FALSE) $replacement = '<embed src="http://video.google.com/googleplayer.swf?docid=' . $videoquery['docid'] . '" width="400" height="326" type="application/x-shockwave-flash"></embed>';				break;			}			$Code = str_replace($match, $replacement, $Code);		}	$Code = str_replace("\n", "<br>", $Code);	$array[0] = $UserName;	$array[1] = $PostDate;	$array[2] = $Code;	if	(!$preview){$PosstString='<div class="postbody" style="background-color:#%topiccolor" >	<h3>%title</h3>	Posted by %user on %postdate	<div>%text</div></div><dl class="postprofile">	<dd style="margin: 0px 5px 0px 5px">%user<br> %group<br>%usravatar<br> Posts: %uposts<br> Joined: %joindate<br>MSN: %usrmsn<br>Email: %usrmail</dd></dl>';}else{	$PosstString='%text';	$PosstString = str_replace("%text",$array[2],$PosstString);	return $PosstString;	}	@mysql_select_db($database);	$result = mysql_query("SELECT * FROM ".$tblName.' WHERE UserName = "'.$array[0].'"');	$Group = mysql_result($result,0,"UserGroup");	$PostCount = mysql_result($result,0,"UserPostCount");	$Joindate = mysql_result($result,0,"UserJoinDate");	$UserAvatar = mysql_result($result,0,"UserAvatar");	if ($UserAvatar != ""){$UserAvatar = '<img src="'.$UserAvatar .'" alt="Not found"/>';}	$showemail = '';	$showmsn = '';	$showState = mysql_result($result,0,'UserShowMailMSN');	if	($showState == 3){$showemail = mysql_result($result,0,'UserEmail'); $showmsn = mysql_result($result,0,'UserMSN');}	elseif($showState == 2){$showmsn = mysql_result($result,0,'UserMSN');}	elseif($showState == 1){$showemail = mysql_result($result,0,'UserEmail');}	$showemail = str_replace("@","(at)",$showemail);	$showemail = str_replace(".","(dot)",$showemail);	$showmsn = str_replace("@","(at)",$showmsn);	$showmsn = str_replace(".","(dot)",$showmsn);	$PosstString = str_replace("%user",$array[0],$PosstString);	$PosstString = str_replace("%postdate",$array[1],$PosstString);	$PosstString = str_replace("%title",$Title,$PosstString);	$PosstString = str_replace("%group",GropuToString($Group),$PosstString);	$PosstString = str_replace("%uposts",$PostCount,$PosstString);	$PosstString = str_replace("%joindate",$Joindate,$PosstString);	$PosstString = str_replace("%usravatar",$UserAvatar,$PosstString);	$PosstString = str_replace("%usrmsn",$showmsn,$PosstString);	$PosstString = str_replace("%usrmail",$showemail,$PosstString);	$PosstString = str_replace("%text",$array[2],$PosstString);	return $PosstString;}@mysql_select_db("Images");$result = mysql_query("SELECT * FROM ".'Images WHERE FileName = "file"');$comments = mysql_result($result,0,"Comment");$Title = mysql_result($result,0,"FileName");if ($comments == ""){echo "No one comments";}else{	$CommentsArray = explode("[/comment]",$comments);	echo '<p>';	$ColorToggle = true;	for ($i = 0; $i < count($CommentsArray) -1;$i++)	{		if ($ColorToggle){			$TopicColor = "f0f0f0";			$ColorToggle = false;		}else		{			$TopicColor = "ffffff";			$ColorToggle = true;		}		$PosstString  = ParseCode($CommentsArray[$i]);		$PosstString = str_replace("%topiccolor",$TopicColor,$PosstString);		echo $PosstString."<br>";	}	echo '</p>';}if ($loggedin){echo "<br>reply";}else{echo "<br>Login to reply";}?>

here's Comment field from mysql

[comment user="rain" date="1.jan.2011"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.Why do we use it?It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).[/comment][comment user="rain" date="1.jan.2011"]styles: [b]bold[/b] [i]italic[/i] [u]underline[/u] [lnk]http://google.com[/lnk] [img=http://leandrovieira.com/projects/jquery/lightbox/photos/image1.jpg] [/comment][comment user="rain" date="1.jan.2011"]styles: [b]bold[/b] [i]italic[/i] [u]underline[/u] [lnk]http://google.com[/lnk] [img=http://leandrovieira.com/projects/jquery/lightbox/photos/image1.jpg] [video host=youtube.com]http://www.youtube.com/watch?v=7BBXXnYoIVo&feature=topvideos[/video]ab[quote]fhgfhc[/quote]blahh[/comment]

Link to comment
Share on other sites

Well, the first thing I would do is nest all your content within proper document structure tags, including a doctype, a head section, and a body section.the biggest reason things aren't happening the way you expect is because your post body and profiles are all being floated, which is taking them out of the normal flow of the document and for some reason you have chosen to enclose them all in a <p> tag. While I strongly suggest you refactor your page to resemble an honest to goodness DOM , you could try adding overflow: auto to that opening <p> tag. This should have it engulf all those floated elements, and push the login text to where you are expecting it to be.

Link to comment
Share on other sites

overflow: auto << this didnt help, so I removed <p> tag. I added doctype, head, body section. and also html tags as you suggested. Also added comments to make it easiernow I have this

<?phpecho'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><head><style TYPE="text/css">blockquote {	background: #ebebeb none 6px 8px no-repeat;	border: 1px solid #dbdbdb;	font-size: 0.95em;	margin: 0.5em 1px 0 25px;	overflow: hidden;	padding: 5px;}a:link	{ color: #0000CC; text-decoration: none; }a:visited	{ color: #0000CC; text-decoration: none; }a:hover	{ color: #3333FF; text-decoration: underline; }a:active	{ color: #3333FF; text-decoration: none; }.postprofile {	margin: 5px 0 10px 0;	min-height: 80px;	color: #00;	border-left: 1px solid #000000;	width: 22%;	float: right;	display: inline;}.postbody {	padding: 0;	line-height: 1.48em;	color: #333333;	width: 76%;	float: left;	clear: both;}hr.divider {	display: none;}</style></head><body>';function GropuToString($GroupNR){	if ($GroupNR == 0){return "Banned";}	elseif ($GroupNR == 1){return "Registered user";}	elseif ($GroupNR == 2){return "Administrator";}}$singleQuete = "'";$dbuser="";$dbpassword="";$database="";$tblName = "Users";mysql_connect("localhost",$dbuser,$dbpassword);@mysql_select_db($database) or die( "Unable to select database");$loggedin = false;if(isset($_COOKIE['User'])){	//echo($_COOKIE['User']);	//exit();	$UserData = explode("waaaaaaaaaaaaw",$_COOKIE['User']);	//echo "cookie".$UserData;	$result = mysql_query("SELECT * FROM ".$tblName.' WHERE UserName = "'.$UserData[0].'"');	if(mysql_num_rows($result)){		if ($UserData[1] == mysql_result($result,0,"UserPassword"))		{			if(mysql_result($result,0,"UserGroup") == 0){die("Your account have been banned!<br>Reason: ".mysql_result($result,0,"UserBanReason"));}			$loggedin  = true;		}	}else{		setcookie("User", "", mktime(12,0,0,1, 1, 1990));	}}function parsecode($Code, $preview = false){	global $database;	global $tblName;	global $UserData;	global $Title;	$UserName = substr($Code,15);	$UserEnd = strpos($UserName,'"');	$UserName = substr($UserName,0,$UserEnd );	$DateStart = strpos($Code,'date="');	$PostDate = substr($Code, $DateStart+6 );	$DateEnd = strpos($PostDate,'"');	$PostDate = substr($PostDate, 0 ,$DateEnd);	$TextStart= $DateStart+6+$DateEnd+2;	$Code = substr($Code , $TextStart);	$bbarray = array("[b]","[/b]","[i]","[/i]","[u]","[/u]");	$htmlarray = array("<b>","</b>","<i>","</i>","<u>","</u>");	$Code = str_replace($bbarray,$htmlarray,$Code);		while (preg_match_all('`\[(.+?)=?(.*?)\](.+?)\[/\1\]`', $Code, $matches)) foreach ($matches[0] as $key => $match) {			list($tag, $param, $innertext) = array($matches[1][$key], $matches[2][$key], $matches[3][$key]);			switch ($tag) {				case 'size': $replacement = "<span style=\"font-size: $param;\">$innertext</span>"; break;				case 'color': $replacement = "<span style=\"color: $param;\">$innertext</span>"; break;				case 'center': $replacement = "<div class=\"centered\">$innertext</div>"; break;				case 'quote': $replacement = "<blockquote>$innertext</blockquote>";break;				case 'lnk': $replacement = '<a href="' . ($param? $param : $innertext) . "\">$innertext</a>"; break;				case 'url': $replacement = '<a href="' . ($param? $param : $innertext) . "\">$innertext</a>"; break;				case 'img':					list($width, $height) = preg_split('`[Xx]`', $param);					$replacement = "<img src=\"$innertext\" " . (is_numeric($width)? "width=\"$width\" " : '') . (is_numeric($height)? "height=\"$height\" " : '') . '/>';				break;				case 'video':					$videourl = parse_url($innertext);					parse_str($videourl['query'], $videoquery);					if (strpos($videourl['host'], 'youtube.com') !== FALSE) $replacement = '<embed src="http://www.youtube.com/v/' . $videoquery['v'] . '" type="application/x-shockwave-flash" width="425" height="344"></embed>';					if (strpos($videourl['host'], 'google.com') !== FALSE) $replacement = '<embed src="http://video.google.com/googleplayer.swf?docid=' . $videoquery['docid'] . '" width="400" height="326" type="application/x-shockwave-flash"></embed>';				break;			}			$Code = str_replace($match, $replacement, $Code);		}	$Code = str_replace("\n", "<br>", $Code);	$array[0] = $UserName;	$array[1] = $PostDate;	$array[2] = $Code;	if	(!$preview){$PosstString='<div class="postbody" style="background-color:#%topiccolor" >	<h3>%title</h3>	Posted by %user on %postdate	<div>%text</div></div><dl class="postprofile">	<dd style="margin: 0px 5px 0px 5px">%user<br> %group<br>%usravatar<br> Posts: %uposts<br> Joined: %joindate<br>MSN: %usrmsn<br>Email: %usrmail</dd></dl><hr class="divider" />';}else{	$PosstString='%text';	$PosstString = str_replace("%text",$array[2],$PosstString);	return $PosstString;	}	@mysql_select_db($database);	$result = mysql_query("SELECT * FROM ".$tblName.' WHERE UserName = "'.$array[0].'"');	$Group = mysql_result($result,0,"UserGroup");	$PostCount = mysql_result($result,0,"UserPostCount");	$Joindate = mysql_result($result,0,"UserJoinDate");	$UserAvatar = mysql_result($result,0,"UserAvatar");	if ($UserAvatar != ""){$UserAvatar = '<img src="'.$UserAvatar .'" alt="Not found"/>';}	$showemail = '';	$showmsn = '';	$showState = mysql_result($result,0,'UserShowMailMSN');	if	($showState == 3){$showemail = mysql_result($result,0,'UserEmail'); $showmsn = mysql_result($result,0,'UserMSN');}	elseif($showState == 2){$showmsn = mysql_result($result,0,'UserMSN');}	elseif($showState == 1){$showemail = mysql_result($result,0,'UserEmail');}	$showemail = str_replace("@","(at)",$showemail);	$showemail = str_replace(".","(dot)",$showemail);	$showmsn = str_replace("@","(at)",$showmsn);	$showmsn = str_replace(".","(dot)",$showmsn);	$PosstString = str_replace("%user",$array[0],$PosstString);	$PosstString = str_replace("%postdate",$array[1],$PosstString);	$PosstString = str_replace("%title",$Title,$PosstString);	$PosstString = str_replace("%group",GropuToString($Group),$PosstString);	$PosstString = str_replace("%uposts",$PostCount,$PosstString);	$PosstString = str_replace("%joindate",$Joindate,$PosstString);	$PosstString = str_replace("%usravatar",$UserAvatar,$PosstString);	$PosstString = str_replace("%usrmsn",$showmsn,$PosstString);	$PosstString = str_replace("%usrmail",$showemail,$PosstString);	$PosstString = str_replace("%text",$array[2],$PosstString);	return $PosstString."\n<!-- COMMENT END -->\n\n";}@mysql_select_db("Images");$result = mysql_query("SELECT * FROM ".'Images WHERE FileName = "file"');$comments = mysql_result($result,0,"Comment");$Title = mysql_result($result,0,"FileName");if ($comments == ""){echo "No one comments";}else{	$CommentsArray = explode("[/comment]",$comments);	$ColorToggle = true;	for ($i = 0; $i < count($CommentsArray) -1;$i++)	{		if ($ColorToggle){			$TopicColor = "f0f0f0";			$ColorToggle = false;		}else		{			$TopicColor = "ffffff";			$ColorToggle = true;		}		$PosstString  = ParseCode($CommentsArray[$i]);		$PosstString = str_replace("%topiccolor",$TopicColor,$PosstString);		echo $PosstString."<br>";	}}if ($loggedin){echo "<br>reply";}else{echo "<br>Login to reply";}echo '<body><html>';?>

And html it generates

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><head><style TYPE="text/css">blockquote {	background: #ebebeb none 6px 8px no-repeat;	border: 1px solid #dbdbdb;	font-size: 0.95em;	margin: 0.5em 1px 0 25px;	overflow: hidden;	padding: 5px;}a:link	{ color: #0000CC; text-decoration: none; }a:visited	{ color: #0000CC; text-decoration: none; }a:hover	{ color: #3333FF; text-decoration: underline; }a:active	{ color: #3333FF; text-decoration: none; }.postprofile {	margin: 5px 0 10px 0;	min-height: 80px;	color: #00;	border-left: 1px solid #000000;	width: 22%;	float: right;	display: inline;}.postbody {	padding: 0;	line-height: 1.48em;	color: #333333;	width: 76%;	float: left;	clear: both;}hr.divider {	display: none;}</style></head><body><div class="postbody" style="background-color:#f0f0f0" >	<h3>file</h3>	Posted by rain on 1.jan.2011	<div>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<br>Why do we use it?<br><br>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<br></div></div><dl class="postprofile">	<dd style="margin: 0px 5px 0px 5px">rain<br> Administrator<br><img src="http://avatars.postiton.net/avatars/Keyboard-Not-Found.jpg" alt="Not found"/><br> Posts: 0<br> Joined: 31 Mar 2011<br>MSN: <br>Email: </dd></dl><hr class="divider" /><!-- COMMENT END --><br><div class="postbody" style="background-color:#ffffff" >	<h3>file</h3>	Posted by rain on 1.jan.2011	<div>styles: <b>bold</b> <i>italic</i> <u>underline</u> <a href="http://google.com">http://google.com</a> <img src="http://leandrovieira.com/projects/jquery/lightbox/photos/image1.jpg" /> </div></div><dl class="postprofile">	<dd style="margin: 0px 5px 0px 5px">rain<br> Administrator<br><img src="http://avatars.postiton.net/avatars/Keyboard-Not-Found.jpg" alt="Not found"/><br> Posts: 0<br> Joined: 31 Mar 2011<br>MSN: <br>Email: </dd></dl><hr class="divider" /><!-- COMMENT END --><br><div class="postbody" style="background-color:#f0f0f0" >	<h3>file</h3>	Posted by rain on 1.jan.2011	<div>styles: <b>bold</b> <i>italic</i> <u>underline</u> <a href="http://google.com">http://google.com</a> <img src="http://leandrovieira.com/projects/jquery/lightbox/photos/image1.jpg" /> <embed src="http://www.youtube.com/v/7BBXXnYoIVo" type="application/x-shockwave-flash" width="425" height="344"></embed><br>a<br>b<br><blockquote>fhgfhc</blockquote><br>blahh</div></div><dl class="postprofile">	<dd style="margin: 0px 5px 0px 5px">rain<br> Administrator<br><img src="http://avatars.postiton.net/avatars/Keyboard-Not-Found.jpg" alt="Not found"/><br> Posts: 0<br> Joined: 31 Mar 2011<br>MSN: <br>Email: </dd></dl><hr class="divider" /><!-- COMMENT END --><br><br>reply<body><html>

Link to comment
Share on other sites

and? no luck?well, your body and html tags at the end aren't closing tags. I knows it's because of the float that the text is overlapping on top of those other elements. I added a containing div around everything (just like you had the <p> tag before) and made the reply text outside the closing tag and added overflow:auto and the reply text was at the bottom.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><head><style TYPE="text/css">blockquote {	background: #ebebeb none 6px 8px no-repeat;	border: 1px solid #dbdbdb;	font-size: 0.95em;	margin: 0.5em 1px 0 25px;	overflow: hidden;	padding: 5px;}a:link	{ color: #0000CC; text-decoration: none; }a:visited	{ color: #0000CC; text-decoration: none; }a:hover	{ color: #3333FF; text-decoration: underline; }a:active	{ color: #3333FF; text-decoration: none; }.postprofile {	margin: 5px 0 10px 0;	min-height: 80px;	color: #00;	border-left: 1px solid #000000;	width: 22%;	float: right;	display: inline;}.postbody {	padding: 0;	line-height: 1.48em;	color: #333333;	width: 76%;	float: left;	clear: both;}hr.divider {	display: none;}</style></head><body><div style="overflow:auto;"><div class="postbody" style="background-color:#f0f0f0" >	<h3>file</h3>	Posted by rain on 1.jan.2011	<div>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<br>Why do we use it?<br><br>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<br></div></div><dl class="postprofile">	<dd style="margin: 0px 5px 0px 5px">rain<br> Administrator<br><img src="http://avatars.postiton.net/avatars/Keyboard-Not-Found.jpg" alt="Not found"/><br> Posts: 0<br> Joined: 31 Mar 2011<br>MSN: <br>Email: </dd></dl><hr class="divider" /><!-- COMMENT END --><br><div class="postbody" style="background-color:#ffffff" >	<h3>file</h3>	Posted by rain on 1.jan.2011	<div>styles: <b>bold</b> <i>italic</i> <u>underline</u> <a href="http://google.com">http://google.com</a> <img src="http://leandrovieira.com/projects/jquery/lightbox/photos/image1.jpg" /> </div></div><dl class="postprofile">	<dd style="margin: 0px 5px 0px 5px">rain<br> Administrator<br><img src="http://avatars.postiton.net/avatars/Keyboard-Not-Found.jpg" alt="Not found"/><br> Posts: 0<br> Joined: 31 Mar 2011<br>MSN: <br>Email: </dd></dl><hr class="divider" /><!-- COMMENT END --><br><div class="postbody" style="background-color:#f0f0f0" >	<h3>file</h3>	Posted by rain on 1.jan.2011	<div>styles: <b>bold</b> <i>italic</i> <u>underline</u> <a href="http://google.com">http://google.com</a> <img src="http://leandrovieira.com/projects/jquery/lightbox/photos/image1.jpg" /> <embed src="http://www.youtube.com/v/7BBXXnYoIVo" type="application/x-shockwave-flash" width="425" height="344"></embed><br>a<br>b<br><blockquote>fhgfhc</blockquote><br>blahh</div></div><dl class="postprofile">	<dd style="margin: 0px 5px 0px 5px">rain<br> Administrator<br><img src="http://avatars.postiton.net/avatars/Keyboard-Not-Found.jpg" alt="Not found"/><br> Posts: 0<br> Joined: 31 Mar 2011<br>MSN: <br>Email: </dd></dl><hr class="divider" /><!-- COMMENT END --></div>  <!-- closes the div with overflow:auto --><br><br>reply</body></html>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...