Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Closed Thread
 
Thread Tools Display Modes
Old Oct 14th, 2005, 1:55 PM   #11
tempest
Programming Guru
 
tempest's Avatar
 
Join Date: Oct 2004
Posts: 1,041
Rep Power: 5 tempest is on a distinguished road
Send a message via ICQ to tempest Send a message via AIM to tempest Send a message via Yahoo to tempest
bja888, sorry to tell you: There's not one person here who thinks favorably of your arrogant flaunting of ignorance because of your need to feel superior. You have become simply enough an object for our amusment, stop now, or forever be an a**..
__________________

tempest is offline  
Old Oct 14th, 2005, 3:43 PM   #12
bja888
Hobbyist Programmer
 
bja888's Avatar
 
Join Date: Oct 2005
Location: Central, FL
Posts: 213
Rep Power: 0 bja888 is an unknown quantity at this point
Send a message via AIM to bja888 Send a message via Yahoo to bja888
Why are all of you avoiding the question?? Can it be done, yes or no? You keep insesting that html works but you wont answer yes.

DaWei almost had me 30 min after I posted the thread. Someone finish his work. You can do it! I have faith in you guys!
bja888 is offline  
Old Oct 14th, 2005, 4:36 PM   #13
Polyphemus_
Expert Programmer
 
Polyphemus_'s Avatar
 
Join Date: Aug 2005
Location: Rotterdam, the Netherlands
Posts: 942
Rep Power: 4 Polyphemus_ is on a distinguished road
you mean this?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" /> <title></title>
<style>
#largeBoxOne{position:absolute;left:100px;top:50px ;width:500px;height:150px; background-color:#4B5F73;} 
#goLeft{width:150px;height:150px; background-color:#3C6A5E; clear: left; float: left;} 
#goRight{width:150px;height:150px;background-color:#3C6A5E;float:right;} </style>
</head>
<body>
<div id="largeBoxOne">
  <div id="goLeft">Left</div>
  <div id="goRight">Right</div>
</div>
</body>
</html>

in total, it cost me 1 minute, and i used wordpad as editor.
Polyphemus_ is offline  
Old Oct 14th, 2005, 6:06 PM   #14
Ooble
I eat cake for breakfast.
 
Ooble's Avatar
 
Join Date: Jul 2004
Location: In my box.
Posts: 4,434
Rep Power: 9 Ooble is on a distinguished road
OK, it's midnight, I'm tired, and the thread I wanted to rant in has been closed. Anyway, let's play with this:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>
	<title></title>
	<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
	<style>
	#largeBoxOne
	{
		position:         absolute;
		left:             100px;
		top:              50px;
		width:            500px;
		height:           150px;
		background-color: #4B5F73;
	}
	
	#goLeft
	{
		float:            left;
		width:            150px;
		height:           150px;
		background-color: #3C6A5E;
	}
	
	#goRight
	{
		float:            right;
		width:            150px;
		height:           150px;
		background-color: #3C6A5E;
	}
	</style>
</head>

<body>
	<div id="largeBoxOne">
		<div id="goLeft">Left</div>
		<div id="goRight">Right</div>
	</div>
</body>

</html>
I cleaned up your code a lot, but all I added were the float: left and float: right attributes.

By the way, I would suggest you back up your arguments with fact as opposed to an opinion which seems to be grounded in an alternate reality.
__________________
Me :: You :: Them
Ooble is offline  
Old Oct 14th, 2005, 6:42 PM   #15
bja888
Hobbyist Programmer
 
bja888's Avatar
 
Join Date: Oct 2005
Location: Central, FL
Posts: 213
Rep Power: 0 bja888 is an unknown quantity at this point
Send a message via AIM to bja888 Send a message via Yahoo to bja888
Quote:
Originally Posted by bja888
I want to have content in the middle of layer "largeBoxOne" I want the other layers to border the content. I want them to line up pirfectly. Lets just pretend the side boxes are images... so you cant just add a border to the main layer.
I'm glad you guys are trying now but I wanted content in the middle of the two side boxes.

Ooble your code does look more visually appealing. That’s not how the browser would read it though so you don't need all those spaces. Remember the browser has to load every space, tab and break.
I'm used to freeing up empty space so my html runs together.
bja888 is offline  
Old Oct 14th, 2005, 6:47 PM   #16
Jessehk
The Oblivious One
 
Jessehk's Avatar
 
Join Date: May 2005
Location: Ontario, Canada
Posts: 644
Rep Power: 4 Jessehk is on a distinguished road
Quote:
Originally Posted by bja888
I'm glad you guys are trying now but I wanted content in the middle of the two side boxes.

Ooble your code does look more visually appealing. That’s not how the browser would read it though so you don't need all those spaces. Remember the browser has to load every space, tab and break.
I'm used to freeing up empty space so my html runs together.
I'm still deciding if you are a real person or not.

Your obliviousness is making it a difficult decision
__________________
Dr. Zoidberg: [ecstatic] I'm going to a movie... with FRIENDS!
Jessehk is offline  
Old Oct 14th, 2005, 7:25 PM   #17
Ooble
I eat cake for breakfast.
 
Ooble's Avatar
 
Join Date: Jul 2004
Location: In my box.
Posts: 4,434
Rep Power: 9 Ooble is on a distinguished road
Your argument for obfuscating your code is to save microseconds in download and rendering time? C'mon, man...
__________________
Me :: You :: Them
Ooble is offline  
Old Oct 14th, 2005, 7:33 PM   #18
bja888
Hobbyist Programmer
 
bja888's Avatar
 
Join Date: Oct 2005
Location: Central, FL
Posts: 213
Rep Power: 0 bja888 is an unknown quantity at this point
Send a message via AIM to bja888 Send a message via Yahoo to bja888
when you run 56K (or less) every second matters
bja888 is offline  
Old Oct 15th, 2005, 4:18 AM   #19
Polyphemus_
Expert Programmer
 
Polyphemus_'s Avatar
 
Join Date: Aug 2005
Location: Rotterdam, the Netherlands
Posts: 942
Rep Power: 4 Polyphemus_ is on a distinguished road
so in your opinion, code has to be unreadable...
Polyphemus_ is offline  
Old Oct 15th, 2005, 6:13 AM   #20
nindoja
Programmer
 
Join Date: Jun 2005
Posts: 92
Rep Power: 4 nindoja is on a distinguished road
@bja888: You want DaWei to prove to us that you are a fool? He doesn't have to, you are doing a prime job yourself. Now you just have to realize that you are a fool, and then you can begin the path to recovery.
nindoja is offline  
Closed Thread

Bookmarks

« Previous Thread in Forum | Next Thread in Forum »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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
Forum Jump




DaniWeb IT Discussion Community
All times are GMT -5. The time now is 5:29 AM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC