How to setup this type of page?

This is a discussion on "How to setup this type of page?" within the Web Page Design section. This forum, and the thread "How to setup this type of page? are both part of the Design Your Website category.


 Subscribe in a reader

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

Notices




Reply
 
LinkBack Thread Tools
  #1  
Old Feb 16th, 2007, 16:47
New Member
Join Date: Feb 2007
Location: Canada
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
How to setup this type of page?

Hi All,

Any idea, that how can I setup this type of page border and is there any easy way.......
Please see attached screenshot. I marked red boxes to show what I want. It is left and right line with 3d feeling...

Live look can be seen here...
http://www.thestar.com/sports


Thanks in advance....
Attached Images
File Type: jpg HowToDoThat.JPG (109.7 KB, 48 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote

  #2  
Old Feb 16th, 2007, 19:08
Elite Veteran
Join Date: Aug 2005
Location: That Place
Posts: 2,044
Blog Entries: 1
Thanks: 0
Thanked 37 Times in 37 Posts
Re: How to setup this type of page?

make a graphic and repeat it on the y axis of the body element.
__________________

Last Blog Entry: Apps every Mac based web dev should consider (Jul 10th, 2008)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old Feb 16th, 2007, 23:55
Elite Veteran
Join Date: Sep 2006
Location: Pink House
Posts: 3,946
Thanks: 0
Thanked 0 Times in 0 Posts
Re: How to setup this type of page?

What graphics program are you using?

In my graphics program. I draw a white rectangle. Then I add a shadow around it. Some programs call it a glow.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old Feb 18th, 2007, 03:09
Elite Veteran
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: How to setup this type of page?

This is the background and all you do is apply it to body { } with repeat-y

Code: Select all
body {
  background: #fff url(background.jpg) repeat-y 0 0;
}
something like that
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5  
Old Feb 19th, 2007, 14:00
Elite Veteran
Join Date: Aug 2005
Location: That Place
Posts: 2,044
Blog Entries: 1
Thanks: 0
Thanked 37 Times in 37 Posts
Re: How to setup this type of page?

The graphic only needs to be a few pixels tall as well as it will repeat down the entire page regardless of height.
__________________

Last Blog Entry: Apps every Mac based web dev should consider (Jul 10th, 2008)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #6  
Old Feb 22nd, 2007, 16:30
Reputable Member
Join Date: Dec 2005
Location: Texas
Age: 19
Posts: 328
Thanks: 0
Thanked 0 Times in 0 Posts
Re: How to setup this type of page?

I tried setting up this type of page but it kept extending past the image. I dont get why but imma keep practicing
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #7  
Old Feb 22nd, 2007, 16:35
Elite Veteran
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: How to setup this type of page?

What do you mean "it kept extending past the image"? You need to set the widths properly.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #8  
Old Feb 22nd, 2007, 19:28
Reputable Member
Join Date: Dec 2005
Location: Texas
Age: 19
Posts: 328
Thanks: 0
Thanked 0 Times in 0 Posts
Re: How to setup this type of page?

Say this ( | ) will represent the ends of the image. this is what it does...

| jgjfgjfgjgjfdgj | bfgnfgnwgfdgfdhgfdhgf

I dont get why. i tryed it but it didnt work for me. I wanted to make a site like that but i never know how do do that and i thought i would be better off not knowing.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #9  
Old Feb 22nd, 2007, 19:37
Elite Veteran
Join Date: Sep 2006
Location: Pink House
Posts: 3,946
Thanks: 0
Thanked 0 Times in 0 Posts
Re: How to setup this type of page?

daygon, are you getting that in dreamweaver by the way?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #10  
Old Feb 23rd, 2007, 11:40
Elite Veteran
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: How to setup this type of page?

Your CSS should look something like this

Code: Select all
body {
  background-color: #fff;
}

#wrap {
  background: #fff url(background.jpg) repeat-y 0 0;
  margin: 0 auto;
  width: 780px;
  padding: 0 10px;
}
And then you HTML
HTML: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-CA" xml:lang="EN-CA">

<head>
    <title>Some title</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

    <link rel="stylesheet" href="stylesheet.css" type="text/css" media="all" />
    
</head>

<body>
<div id="wrap">content in here</div>
</body>
</html>

something like that. If you want to see another example you can check out apica.ca. It's a site I did recently and has a background repeating for the content.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #11  
Old Feb 23rd, 2007, 14:40
Reputable Member
Join Date: Dec 2005
Location: Texas
Age: 19
Posts: 328
Thanks: 0
Thanked 0 Times in 0 Posts
Re: How to setup this type of page?

Ahh ok thanks. that solves alot of problems. Just that one little thing i missed
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Tags
3d border

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
How to setup PHPMailer TWD PHP Forum 0 Jun 6th, 2008 13:51
mysql configuration/setup help lcsaeteurn Databases 0 Apr 7th, 2008 03:29
Your Setup/Environment andrewlondon Webforumz Cafe 6 Sep 1st, 2007 20:55
Is my site setup correctly? cj550 Website Planning 4 Apr 3rd, 2007 16:29
Help changing page setup options at runtime just_the_basix ASP.NET Forum 1 Jul 20th, 2004 18:45


All times are GMT. The time now is 16:37.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization 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