PHP Classes

Scrollbar issue

Recommend this page to a friend!

      DrasticTools  >  All threads  >  Scrollbar issue  >  (Un) Subscribe thread alerts  
Subject:Scrollbar issue
Summary:issue with the scrollbar cant get my get around it
Messages:1
Author:Michael Quinn
Date:2011-01-31 10:01:27
 

  1. Scrollbar issue   Reply   Report abuse  
Picture of Michael Quinn Michael Quinn - 2011-01-31 10:01:27
Hi running on wamp server 2.1

I have an issue with the scroll bars. see below.

imgur.com/UhLBn

They dont seem to work properly

Chrome and FF affected.

Here is my code on my page. i wonder is it because i have it running on wamp or is it because i have to content inside other DIVS. Im also using another CSS file for styling another part of the page.

Any info greatly appriciated.



---------------

<title>Projects</title>


</head>

<body>

<?php
//include the panel centralised php script
include('includes/panel.php');

?>

<div id="main">

<div class="container">
<h1> projects</h1>
<h2>Please select a project you would like to view</h2>
</div>

<div class="container">








<div id="grid1"></div>

<script type="text/javascript" src="js/mootools-1.2-core.js"></script>
<script type="text/javascript" src="js/mootools-1.3-more.js"></script>
<script type="text/javascript" src="js/drasticGrid.js"></script>
<script type="text/javascript">





var thegrid = new drasticGrid('grid1', {pathimg:"img/", pagelength:10,
columns: [
{name: 'id',width: 30},
{name: 'projectname'},
{name: 'comment', type: DDTYPETEXT, width: 450, editable: true},
{name: 'link',type: DDTYPEURL, editable: false,width: 40},
]
});
</script>




</div>



<?php include('includes/footer.php'); ?>

</body>
</html>