This is the page which I want the tables to be removed from.
The actual link to it can be found here http://arenblogs.com/test/
HTML Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>ArenBlogs</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta name="description" content="Free blog using Arenlor Blogging software.">
<meta name="keywords" content="Arenlor, Arenlor BloodLeaf, Arenlor Productions">
<meta name="robots" content="index,follow">
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="shortcut icon" href="favicon.ico">
<link rel="icon" href="favicon.ico">
</head>
<body>
<h1>Test Blog</h1><h2>Lorem ipsum dolor sit amet</h2><table><tr><td width="200px"><p><a href="index.php?id=6">Lorem Ipsum Dolor Sit</a></p><p><a href="index.php?id=5">Lorem Ipsum Dolor</a></p><p><a href="index.php?id=4">Lorem Ipsum</a></p><p class="inner"><a href="all.php">View all</a></p></td><td class="blog"><p class="blog">Lorem ipsum dolor sit amet, consectetur adipisicing elit</p></td></tr></table><hr><p style="text-align:center; font-size:10pt"><a href="http://prod.arenlor.com/blogs/">ArenBlog v1.0</a> Released Under the <a href="http://www.arenlor.com/freedom.php">Arenlor Freedom License</a></p></body></html>
The css I currently have is
Code:
body {color:maroon;background-color:#3030FF;}
p.all {text-align:center;}
p.inner {font-size:small;}
p.blog {text-indent:10px;}
p.body {font-size:small;text-align:center;}
h1 {color:#D03030;background-color:#3030FF;text-align:center;}
h2 {color:#30D030;background-color:#3030FF;text-align:center;}
a:link {color:#D00000;background-color:#3030FF;}
a:hover {color:#D0D0D0;background-color:#3030FF;}
a:visited {color:#800070;background-color:#3030FF;}
a:active {color:#FFFFFF;background-color:#3030FF;}
td.blog {width:1000px;}
td.left {width:200px;}
input,textarea,select {background-color:#A0A0FF;color:black;}
I would also like to get rid of any px and replace with with something better if possible.
EDIT:I don't mind if the 1000px on the right can't stay 1000px but the left side needs to be 200px
__________________
PHP Code:
<?php echo "Hello World"; ?>
HTML Code:
<html><head><title>Hello World</title></head><body><p>Hello World</p></body></html>
Last edited by Arenlor; 02-25-2008 at 05:29 PM..
Reason: Added EDIT
|