Tables...

This is a discussion on "Tables..." within the Web Page Design section. This forum, and the thread "Tables... are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Closed Thread
 
LinkBack Thread Tools
  #1 (permalink)  
Old Sep 15th, 2003, 08:11
New Member
Join Date: Aug 2003
Location: United Kingdom
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
Tables...

Is there a way of doing tables like these http://users.quickfox.tk/~korntv/thenews.php in CSS? If there is, which there probably is, can someone please tell me how.

  #2 (permalink)  
Old Sep 15th, 2003, 11:12
Junior Member
Join Date: Aug 2003
Location: United Kingdom
Posts: 48
Thanks: 0
Thanked 0 Times in 0 Posts
Looks near-identical. Tested in Opera 7.2b and IE6. Note there are absolutely no HTML tags in the body other than DIVs. Links not implemented to make things shorter. Sorry if this pushes out the forum width somewhat;

Code: Select all
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
	<head>
		<title>KoRnTV - News...</title>
		<style><!--
			body { 
				background-color: #990000; 
				font-family: Verdana; 
				font-size: xx-small; 
				text-align: center; 
			}
			div { 
				margin-left: auto; 
				margin-right: auto; 
				padding: 1 1 1 1; 
				text-align: left; 
			}
			div.title { 
				background-color: white; 
				color: black; 
				width: 400px; 
				font-size: x-small; 
				font-weight: bold; 
			}
			div.text { 
				color: white; 
				width: 400px; 
				border: solid 1 white; 
				margin-bottom: 20; 
			}
		--></style>
	</head>
	<body>
		<div class="title" id="title1">[Tomb Raider DVD] -- September 15 2003</div>
		<div class="text" id="text1">
			Paramount Pictures has finally released the details for its 
			upcoming Lara Croft - Tomb Raider: The Cradle Of Life, due 
			on DVD and VHS on November 18.

KoRn's current video, 
			'Did My Time' is featured on the DVD. For more info on the
			DVD Click Here!
		</div>
		<div class="title" id="title2">[Jon Davis Interview] -- September 15 2003</div>
		<div class="text" id="text2">
			In a recent review with RollingStone.com, frontman Jonathon
			Davis told them that they've "Got that spark in them again"
			and the new album, currently titled as 'Take A Look In The
			Mirror', is "A really aggressive record. More edgy."


			Read the full interview Here!
		</div>
		<div class="title" id="title3">[Tomb Raider DVD] -- September 15 2003</div>
		<div class="text" id="text3">
			I am Very proud to say that KoRnTV has just won it's 4th 
			ever award! This award was givin by Munkalicious.
		</div>
	</body>
</html>
  #3 (permalink)  
Old Sep 16th, 2003, 09:05
New Member
Join Date: Aug 2003
Location: United Kingdom
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
thanks a lot!
Closed Thread

Tags
tables

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
omg keep me away from tables !!! HELP!!! bruno89 Web Page Design 5 Jul 1st, 2007 18:33
Use CSS to do what tables do????? WebNinja Web Page Design 17 Feb 18th, 2007 01:07
Why are tables bad? WebNinja Web Page Design 17 Jan 31st, 2007 21:31
No more tables? PicoDeath Web Page Design 9 Sep 28th, 2006 18:03
Tables or CSS? bee_bo Web Page Design 15 Jul 6th, 2006 08:32


All times are GMT. The time now is 10:30.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43