Go Back  HTML Forums - Free Webmaster Forums and Help Forums > WEBSITE DEVELOPMENT > HTML / XHTML
User Name:
Password:
 

Reply
Thread Tools   Display Modes
  View First Unread
 
Old 10-31-2009, 03:44 PM
  #1
kyonn
Novice (Level 1)
 
Join Date: Oct 2009
Posts: 3
iTrader: (0)
kyonn is an unknown quantity at this point
Website Panel

Hi I'm brand new here.

Trying to figure out how exactly to make a panel like the one shown on the right in my site layout.

Any advice would be helpful.

http://kyonn.freehostia.com/SitePlan/Layout.jpg
kyonn is offline   Add to del.icio.us Add to del.icio.us    Can you digg it?Can you digg it? Reply With Quote
Old 10-31-2009, 05:08 PM
  #2
Pegasus
Extremely Flighty Admin
 
Pegasus's Avatar
 
Join Date: Nov 2001
Location: 35º South of Santa Claus
Posts: 21,472
iTrader: (0)
Pegasus is a name known to allPegasus is a name known to allPegasus is a name known to allPegasus is a name known to allPegasus is a name known to allPegasus is a name known to all
I'm not seeing the image. Can you put it as an attachment to a post instead of linking to it?
__________________


Decaf is the root of all evil...
HTMLForums Awards 2008
Pegasus is offline   Add to del.icio.us Add to del.icio.us    Can you digg it?Can you digg it? Reply With Quote
Old 10-31-2009, 09:11 PM
  #3
kyonn
Novice (Level 1)
 
Join Date: Oct 2009
Posts: 3
iTrader: (0)
kyonn is an unknown quantity at this point
Here it is as an attachment
Attached Thumbnails
Click image for larger version

Name:	Layout.jpg
Views:	7
Size:	31.4 KB
ID:	10394  
kyonn is offline   Add to del.icio.us Add to del.icio.us    Can you digg it?Can you digg it? Reply With Quote
Old 10-31-2009, 09:54 PM
  #4
Pegasus
Extremely Flighty Admin
 
Pegasus's Avatar
 
Join Date: Nov 2001
Location: 35º South of Santa Claus
Posts: 21,472
iTrader: (0)
Pegasus is a name known to allPegasus is a name known to allPegasus is a name known to allPegasus is a name known to allPegasus is a name known to allPegasus is a name known to all
HTML Code:
<div id="innerwrap">
<h1>Title Goes Here</h1>
<p>Paragraph content goes here.</p>
<div id="content" style="overflow: scroll; height: 400px;">
Pictures and text go here.
</div><!--closes content -->
</div><!--closes innerwrap -->
Try something like that.
__________________


Decaf is the root of all evil...
HTMLForums Awards 2008

Last edited by Pegasus : 10-31-2009 at 09:58 PM.
Pegasus is offline   Add to del.icio.us Add to del.icio.us    Can you digg it?Can you digg it? Reply With Quote
Old 10-31-2009, 10:38 PM
  #5
kyonn
Novice (Level 1)
 
Join Date: Oct 2009
Posts: 3
iTrader: (0)
kyonn is an unknown quantity at this point
Hmm...doesn't seem to be working. Here's what I have so far.

HTML:

<div class="title">Title</div>

<p>Text blah blah blah</p>
<div class="nav"><ul><li>games</li><li>movies</li></ul>

<div class="main">

<h1><div style="text-align: center">Kyonn's Website</div></h1>

</div>
</body>
</html>

CSS:
body { background: #666666; color: brown } /* "black" here controls the color of the text on the page */
h1 { font-size: 18pt; font-family: Arial, Helvetica, sans-serif; font-weight: bold }
p { font: 12pt Arial; text-indent: 0.5in }
p.initial:first-letter { font-size: 200%; } /* Use <p class="initial">...</p> to get this to work */
a:link { color: red } /* unvisited links */
a:visited { color: blue } /* visited links */
a:active { color: yellow } /* active links */
.title { width: 100%, height: 200px; background-color:#666666; position:absolute}
.nav {position: absolute;margin-top:200px; width:200px; float:left;}
kyonn is offline   Add to del.icio.us Add to del.icio.us    Can you digg it?Can you digg it? Reply With Quote
Old 11-01-2009, 12:55 AM
  #6
Pegasus
Extremely Flighty Admin
 
Pegasus's Avatar
 
Join Date: Nov 2001
Location: 35º South of Santa Claus
Posts: 21,472
iTrader: (0)
Pegasus is a name known to allPegasus is a name known to allPegasus is a name known to allPegasus is a name known to allPegasus is a name known to allPegasus is a name known to all
HTML Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Page Title</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<style type="text/css">
body {background-color: #666; color: brown; margin: 0px; padding: 0px;}
h1 {font-size: 18pt; font-family: Arial Helvetica sans-serif; font-weight: bold; text-align: center;}
p {font: 12pt Arial; text-indent: .5in;}
p.initial:first-letter {font-size: 200%;}
a:link {color: #F00;}
a:visited {color: #00F;}
a:active {color: #FF0;}
#header {width: 100%; height: 200px; background-color: #666;}
#nav {width: 200px; float: left;}
#main {float: left; display: inline;}
#pix {padding: 20px;}
</style>
</head>
<body>
<div id="header">Title</div>
<p> Text</p>
<div id="nav"><ul><li>games</li><li>movies</li></ul></div>
<div id="main">
<h1>Kyonn's Website</h1>
<p class="initial">More text</p>
<div id="pix">
<img src="image.jpg" alt="Image Description"><br>
<p>Text</p>
</div>
</div>
</body>
</html>
Try something like that.
__________________


Decaf is the root of all evil...
HTMLForums Awards 2008
Pegasus is offline   Add to del.icio.us Add to del.icio.us    Can you digg it?Can you digg it? Reply With Quote

Reply
KEEP TABS
SPONSORS
 
Boxedart
 
 


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



 
  POSTING RULES
 
 
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Thread Tools
Display Modes

Forum Jump

 

All times are GMT -5. The time now is 03:38 AM.

   

Mascot team created by Drawshop.com

Powered by vBulletin® Version 3.6.7
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.

Server Monitoring by ENIACmonitor 0.01
HTMLforums.com © Big Resources, Inc. Web Design by BoxedArt.com
vRewrite 1.5 beta SEOed URLs completed by Tech Help Forum and Chalo Na.