Hey guys, I'm not really into design and I could use some help. My CSS seems to be creating an extra head on my <tr>
element. I used a CSS table generator to create the CSS code and employed a PHP HTML to build my table.
<html>
<title> No Deadline </title>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="./js/jquery.dynatable.js"></script>
<script src="./js/lytebox.js"></script>
<link rel="stylesheet" type="text/css" href="./css/sample.css">
<link rel="stylesheet" type="text/css" href="./css/table_blue.css">
<link rel="stylesheet" type="text/css" href="./css/jquery.dynatable.css">
<link rel="stylesheet" type="text/css" href="./css/lytebox.css">
<script>
$( document ).ready(function() {
$('#my-table').dynatable();
});
function myFunction() {
window.open('table_admin_nodeadline.php','_self')
return true;
}
</script>
</head>
...
Here is the CSS that has been generated:
.data
...
those styles here
...