View Full Version : Can anyone help me with this type of table border ?
linux1880
04-26-2007, 08:43 AM
I am a regualr user of your script , thanks that u have forums as well. Can anyone help me to build this type of table border like in yahoo? I did put table border option on dreamwaevaer but it doesn't look like proffessional as yahoo. I have attached the picture as well please hlp me on this .Thank you
codeexploiter
04-26-2007, 09:18 AM
View the following code
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
.tab
{
background-image:url(bg.jpg);
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:9px;
color:#000080;
font-weight:bold;
border-color:#adbdc5;
height:150px;
border-width: 1px;
border-style:solid;
}
.divblock
{
background-image:url(bg.jpg);
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:9px;
color:#000080;
font-weight:bold;
border-color:#adbdc5;
height:150px;
border-width: 1px;
border-style:solid;
width:400px;
}
</style>
</head>
<body>
<table cellpadding="0" cellspacing="0" width="150" class="tab">
<tr>
<td valign="top">testing</td>
</tr>
</table>
<p>
<div class="divblock">
</div>
</p>
</body>
</html>
I've attached the bg.gif with this posting take it and store that in the same location where you save the above mentioned code and view the page using browser.
Using DIV blocks you can achieve the result that you do it using tables (CSS is better than tables)
linux1880
04-27-2007, 01:21 PM
Thank you codeexploiter
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.