PHP And CSS Help!

Flipper

New Member
Cannot get this working, I want the text on the left image...can't figure out how to do it. This is my code so far, I am pretty sure it should work but I am a newb with php/css.

Code:
<head>
<style type="text/css">

a:link {
	color: 506f9b;
	text-decoration: none;
}
a:visited {
	color: 506f9b;
	text-decoration: none;
}
a:hover {
     font-weight: bold;
     color: 506f9b;
     text-decoration: none;
     text-decoration: bold;
}
left  {width:15%; height:80%;).
(font-size: 2;).
)
right (width:15%; height:80%;).
)
news  (width:125%; height:45%;).
)
</style>
<Center>
<title>
ComputerForums.org - The Website
</title>
</head>
<?php
//default.php made as index.php is used for cool lookin links :)   the beginning of using css - made by flipper/dann
    include('ban.php'); /* this checks to see if the person is IP banned, if so it will redirect
    redirect them to google.com */
    require('global/global_header.php');

    print "<img src=images/left.jpg align=left id=left>
    <img src=images/right.jpg align=right id=right>
    <img src=images/news.jpg align=center id=news><Br>
    <td>
    <div id=left>
    navigation</div>
    </td>";

    print "<font face=tahoma
    size=2><BR><Br><br><Center>
    Welcome to Computerforums.org's latest addition, the computer forums' home page, we now offer tutorials, downloads,
    hardware and software reviews, and more. Sign up today!<BR><BR><br>
    </font>";

	require('global/global_footer.php');
?>
 
Bump? I know the site doesn't look good...believe me it doesn't I am just using it so if people want me to do something I can show them a small portfolio.

EDIT - PROBLEM SOLVED! Thanks to Dragon over msn he helped solve the problem for me, thanks anyway.
 
Last edited:
Back
Top