EDIT: Answer here:Google Chrome Bug - Overflow:auto | scroll doesn't work
My overflow scroll bar is not appearing in my results page.php. I've checked for errors such as not including a height along with the class, but I'm getting nowhere. Maybe it's the php which is messing it up?

You can see the problem yourself by going here http://biketurtle.co/search.php and searching for bikes in 'Antrim' for under 1000 euro
Here's the CSS class:
.textarea
{
height: 848px;
padding-right: 20px;
padding-left: 20px;
list-style: none;
overflow:scroll;
position:relative;
}
And here is some of the HTML:
<section class="section">
<div class="textarea">
<h1>Search</h1>
<?php
if($_SERVER['REQUEST_METHOD']=='POST')
{
include("db_connect.php");
$sql = "SELECT brand,model,type,town,location,university,price,cond,description FROM placead WHERE price < ? AND location = ?";
if($stmt = $link->prepare($sql))
{
$stmt->bind_param('is', $_POST['price'], $_POST['location']);
$stmt->execute();
$stmt- >bind_result($brand,$model,$type,$town,$location,$university,$price,$condition,$description );
/* store result */
$stmt->store_result(); //required to get num_rows
echo"==============================================================";
echo "<br/>";
echo "<br/>";
printf("Your search returned : %d records <br/>", $stmt->num_rows);
echo "<br/>";
echo"==============================================================";
/* fetch values */
while ($stmt->fetch()) {
echo "<br />Price.................................".$price." Euro.";
echo "<br />location..............................".$location;
echo "<br />Brand.................................".$brand;
echo "<br />Model.................................".$model;
echo "<br />Type..................................".$type;
echo "<br />Town..................................".$town;
echo "<br />University............................".$university;
echo "<br />Condition.............................".$condition;
echo "<br/>";
echo "<br/>";
echo "<br /> Description ";
echo "<br/>";
echo "<br/>".$description;
echo "<br/>";
echo"==============================================================";
}
//close the crecordset
$stmt->close();
}
$link->close();
}
else {
?>
// contd......