Jump to content

help with this table


smartchicken

Recommended Posts

Here is my issue, you see as i am sure that you can see, the left side of my table buts to the right. How do i get rid of that? no need for the hyperlink to be all accross the page if you know what i mean....Please HelpThanx™¤ﮒMª®†▫ÇħîćĸєЙ¹¤™<html><head><title></title><style type="text/css">h1 {color: #ff0000}h2 {color: #ff0000}h1 {text-align: left}h2 {text-align: right}body { background: #000000 url('2.jpg') no-repeat fixed center;}</style></head><font size="3" face="dark crystal script"><br /><br /><br /><br /><br /><br /><br /><br /><table><colgroup span="2"><col width="1030"></col><tr><td><a href="index2.html"><h1>ABOUT US</h1></a></td><td><a href="index1.html"><h1>GALLERY</h1></a></td></tr><tr><td><a href="index3.html"><h1>VIDEOS</h1></a></td><td><a href="index4.html"><h1>SHOWS</h1></a></td></tr><tr><td><a href="clothing.html"><h1>WEAR</h1></a></td><td><a href=""><h1>USED SPECIALS</h1></a></td></tr></table></font></body></html>

Link to comment
Share on other sites

  • 5 weeks later...

Edit: Oops, this was a month old thread. Sorry to bump it; I didn't realize it until now :)Do you mean that you want to align the content to the far right of your webiste to the right, so that it is close to the side of your website?Here is the HTML/CSS that you can use to create something similar to your effect. I also took the liberty to make it XHTML 1.0 Transitional valid for you :)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"><head><title></title><style type="text/css">body{	background-color: #000000;	background-image: url('2.jpg');	background-repeat: no-repeat;	background-attachment: fixed;	background-position: center; 	font-family: Verdana, Arial, Sans-Serif;	color: #00FF00;}.links{margin-top:250px;}</style></head><body><table width="100%" class="links"><tr><td align="left">Link 1</td><td align="right">link 2</td></tr><tr><td align="left">Link 1</td><td align="right">link 2</td></tr><tr><td align="left">Link 1</td><td align="right">link 2</td></tr></table></body></html>

Although this does not give exactly as it was before, you can easily customize it to fit your needs.Good luck! :)- Moridin

Link to comment
Share on other sites

Edit: Oops, this was a month old thread. Sorry to bump it; I didn't realize it until now :)Do you mean that you want to align the content to the far right of your webiste to the right, so that it is close to the side of your website?Here is the HTML/CSS that you can use to create something similar to your effect. I also took the liberty to make it XHTML 1.0 Transitional valid for you :)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"><head><title></title><style type="text/css">body{	background-color: #000000;	background-image: url('2.jpg');	background-repeat: no-repeat;	background-attachment: fixed;	background-position: center; 	font-family: Verdana, Arial, Sans-Serif;	color: #00FF00;}.links{margin-top:250px;}</style></head><body><table width="100%" class="links"><tr><td align="left">Link 1</td><td align="right">link 2</td></tr><tr><td align="left">Link 1</td><td align="right">link 2</td></tr><tr><td align="left">Link 1</td><td align="right">link 2</td></tr></table></body></html>

Although this does not give exactly as it was before, you can easily customize it to fit your needs.Good luck! :)- Moridin

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...