1.

Solve : HTML Coding Question?

Answer»

In the following page how can i put the left bar ( containing the link "link")at right?

Means I want to put the ASH color left bar at the right side of the page and
in the left side i want to get "the body of the page".

http://tinyurl.com/pm4rj

Any help will be greatly appreciated.

ThanksTry this:

Code: [Select]<html>
<head>

<###style type="text/css">
A:hover
{
  background:#cccccc;
  color:yellow;
  text-decoration:none
}
A
{
  text-decoration:none
}
</###style>
</head>
<body topmargin="0" leftmargin="0">

<table height="80" WIDTH="900" cellspacing="0" cellpadding="0" border='0'>
  <tr>
    <td colspan='2' bgcolor="#cccccc">
      <div style='text-align: center;'>
          <p>
            <font color="ffffff" size=+2><a><i>Headlines</i></a></font>
            </p>
            <hr />
            <br />
        </div>
      </td>
  </tr>
  <tr>
    <td width="150px" valign="top" bgcolor="#cccccc">
        <div style='text-align: center;'>
        <br />
        <font face="Arial Narrow" size="2">
            <h3>
        <a href="http://www.yahoo.com">
              <b><font color="#ffffff">link</font></b>
            </a>
            </h3>
        <hr size="1" color="#808000" width="93%">
        </div>
      </td>
      <td width="620" valign="top">
        <div style='text-align: center;'>
        <br />
            <blockquote>
          THIS IS THE BODY OF THIS PAGE
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
        </blockquote>
        </div>
      </td>
  </tr>
</table>

<###script type="text/javascript" src="/i.js"></###script>
</body>
</html>
You need to delete "###" where you see it.  That is inserted to overcome YaBB's over-zealous script CENSOR.



Discussion

No Comment Found