I have tried everything in setting up my pMachine Weblog on my website and no matter how wide I made the inline frame that holds the blog it still wants to scroll right and left…
So I thought to update the .css file, which I did, and I took the right and left margins down to 0… it still scrolls…
So I decided to go into the back end PHP and update the weblog.php file and put a table in there with a set width… well I did that and all the text stays in the table and it looks nice… but the page still wants to scroll right and left…
This is boggling my mind, I can not figure this out for the life of me, there is nothing else on that page to make it want to scroll anywhere but up and down…
Any advice? anyone?
Posted: Oct 05, 04 | 12:07 pm PST
————————————————————————————————————————
the weblog.php’s scrip is:
<?php include(“pm_inc.php”); ?>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html>
<head>
<title>KTHR:K-There Radio! ~www.kthr.net~</title>
<meta http-equiv=“Content-Type” content=“text/html; charset=iso-8859-1” />
<!—
Pull-down menu navigation. Used with category menu.
Note: This isn’t used by default. It’s only needed if
you use the ‘pull-down version of the category menu,
rather than the ‘text link’ version
—>
<script language=“JavaScript” type=“text/javascript” >
<!—
function gotoCategory(index) {
document.categories.submit();
}
//—>
</script>
<script language=JavaScript>
<!—
//Disable right click script III- By Renigade (renigade@mediaone.net)
//For full source code, visit http://www.dynamicdrive.com
var message=”“;
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function(“return false”)
//—>
</script>
<!—CSS stylesheet—>
<link rel=“stylesheet” type=“text/css” href=“weblog.css” />
</head>
<body background=“http://www.kthr.net/bground.jpg”>
<table border=“0” width=“460” id=“table1” cellspacing=“0” cellpadding=“0”>
<tr>
<td><!—Weblog entries—>
<?php weblog_entries($id,“weblog”); ?>
</td>
</tr>
</table>
</body>
</html>
the .css is at www.kthr.net/testingblog/weblog.css
the actual page with the inline frame is at http://testsite.kthr.net/index2.htm
