Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
How could i create this!
Old 06-17-2005, 03:35 PM How could i create this!
Experienced Talker

Posts: 32
Trades: 0
Hello all

I was wondering how could i make this?

The colors inc

pic here



Some type of CSS that will allow me to but text in it etc?

Thanks in advance
zerox3k is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 06-17-2005, 06:01 PM
metho's Avatar
Ultra Talker

Posts: 481
Location: Gold Coast - Brisbane QLD, Australia
Trades: 0
This is a fairly easy container to reconstruct and there's more than a dozen ways to do it well. A table and a little CSS will do it, so will divs + CSS.

Charge up photoshop and create a gif gradient image to use for the header cell; make it about 24 px high. Keep tweaking the gradient fill until you like what you see. By the looks of it there's only a very subtle shift in the gradient, so don't go using too much contrast between colors. Once you have the image, crop a single pixel wide, vertical strip of the image and export it as a gif named "backgroundHeader.gif" and save it in your images folder.

The following div/css does the rest...

Code:
<head>
<title>Your Title</title>
<style type="text/css">
<!--
body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
}
.cellContainer {
	width: 50%;
	border: 1px solid #003399;
}
.cellHeader {
	background-color: #0066CC;
	color: #FFFFFF;
	padding: 8px 8px 0px;
	background-image: url(images/backgroundHeader.gif);
	background-repeat: repeat-x;
	height: 24px;
	font-size: 12px;
	font-weight: bold;
}
.cellBodyPadding {
	background-color: #E0E0E0;
	padding: 4px;
}
.cellBodyText {
	background-color: #FBFBFB;
	padding: 4px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #666666;
	border-bottom-color: #666666;
}
-->
</style>
</head>

<body>
<div class="cellContainer">
<div class="cellHeader">
This is the cell header.
</div>
<div class="cellBodyPadding">
<div class="cellBodyText">
  <p>The quick brown fox jumped over the lazy dog.
    The quick brown fox jumped over the lazy dog.
    The quick brown fox jumped over the lazy dog.
    The quick brown fox jumped over the lazy dog.
</p>
  <p>&nbsp; </p>
</div>
</div>
</div>
</body>
Tweak CSS to suit.
__________________
I do
Please login or register to view this content. Registration is FREE
based.
Spend a lot of time in
Please login or register to view this content. Registration is FREE
.
And
Please login or register to view this content. Registration is FREE
chews up the rest.
metho is offline
Reply With Quote
View Public Profile Visit metho's homepage!
 
Old 06-17-2005, 06:42 PM
Experienced Talker

Posts: 32
Trades: 0
thank you very much
zerox3k is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to How could i create this!
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.34788 seconds with 12 queries