hi, looking for advice on website

This is a discussion on "hi, looking for advice on website" within the Graphics and 3D section. This forum, and the thread "hi, looking for advice on website are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Graphics and 3D

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Apr 12th, 2007, 22:40
New Member
Join Date: Apr 2007
Location: Glasgow
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
hi, looking for advice on website

currently doing a university project where i have to design a website in dreamweaver. designed it and started working in dreamweaver, my problem is that i want to create a website with a 'ice layout' and have no idea how to do it. can anyone help?

cheers
Reply With Quote

  #2 (permalink)  
Old Apr 12th, 2007, 22:55
JacobHaug's Avatar
SuperMember

SuperMember
Join Date: Dec 2005
Location: On Internet
Posts: 4,859
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via AIM to JacobHaug Send a message via MSN to JacobHaug
Re: hi, looking for advice on website

Welcome to Webforumz!

I have moved your post to the graphics forum, as that would probably be the best place to ask this question.
Reply With Quote
  #3 (permalink)  
Old Apr 12th, 2007, 23:10
SuperMember

SuperMember
Join Date: Sep 2006
Location: Pink House
Posts: 3,946
Thanks: 0
Thanked 0 Times in 0 Posts
Re: hi, looking for advice on website

Do you own a graphics program? You first need to design the graphics. Once you have designed the layout in the graphics program, you slice it up and start implementing it into Dreamweaver.
Reply With Quote
  #4 (permalink)  
Old Apr 13th, 2007, 14:32
New Member
Join Date: Apr 2007
Location: Glasgow
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Re: hi, looking for advice on website

Quote:
Originally Posted by Lchad View Post
Do you own a graphics program? You first need to design the graphics. Once you have designed the layout in the graphics program, you slice it up and start implementing it into Dreamweaver.
hi there. i've designed the layout in photoshop and have started to import it into dreamweaver. i havnt sliced it up as such because in the guidelines of the brief it says we have to use layers an Div's to create the layout. so i've basically got a few layers, with background images in the from my photoshop layout. the problem is that when i preview it in the browser it sticks to the left hand side of the screen. i'm trying to figure out how to make it always be centered, no matter what size the screen is. is slicing the only way to do this or is it possible with layers?
cheers
Reply With Quote
  #5 (permalink)  
Old Apr 13th, 2007, 15:10
SuperMember

SuperMember
Join Date: Sep 2006
Location: Pink House
Posts: 3,946
Thanks: 0
Thanked 0 Times in 0 Posts
Re: hi, looking for advice on website

If you set the margins to the div to
Code: Select all
margin: { 
0 auto;
}
that will center it.
Reply With Quote
  #6 (permalink)  
Old Apr 13th, 2007, 15:23
SuperMember

SuperMember
Join Date: May 2006
Location: North West, UK
Age: 22
Posts: 1,173
Thanks: 0
Thanked 0 Times in 0 Posts
Re: hi, looking for advice on website

And you need to

Code: Select all
body {
         text-align: center;
}
as well.

Pete.
Reply With Quote
  #7 (permalink)  
Old Apr 13th, 2007, 15:41
moojoo's Avatar
Moderator
Join Date: Aug 2005
Location: Texas
Age: 31
Posts: 1,763
Blog Entries: 1
Thanks: 0
Thanked 18 Times in 18 Posts
Send a message via AIM to moojoo Send a message via MSN to moojoo Send a message via Yahoo to moojoo
Re: hi, looking for advice on website

Quote:
Originally Posted by pa007 View Post
And you need to

Code: Select all
body {
         text-align: center;
}
as well.

Pete.
Only for IE 5.x compatibility and if that happens you need to text-align:left; the containing div to compensate.
__________________
The internet is just a fad.
http://www.mevans76.com
Last Blog Entry: Apps every Mac based web dev should consider (Jul 10th, 2008)
Reply With Quote
  #8 (permalink)  
Old Apr 13th, 2007, 16:02
SuperMember

SuperMember
Join Date: May 2006
Location: North West, UK
Age: 22
Posts: 1,173
Thanks: 0
Thanked 0 Times in 0 Posts
Re: hi, looking for advice on website

Aye, but I always do it. Probably an old habit more than anything.

Pete.
Reply With Quote
  #9 (permalink)  
Old Apr 15th, 2007, 00:07
SuperMember

SuperMember
Join Date: Sep 2006
Location: Pink House
Posts: 3,946
Thanks: 0
Thanked 0 Times in 0 Posts
Re: hi, looking for advice on website

Sorry, I had a typo!
Let's say you want to center a div
the html is
Code: Select all
<div id="wrapper">All your web content goes here</div>
the css to center that div would be
Code: Select all
#wrapper {
margin: 0 auto;
width: 780px;
color: #ffffff
}
Reply With Quote
Reply

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
SEO Advice cre8tivelive Search Engine Optimization (SEO) 3 Feb 25th, 2008 06:30
I need some advice tony2470 Webforumz Cafe 3 Feb 19th, 2008 16:02
Seeking Advice for Multi-Language website design jssaggu Scripts and Online Services 0 Jun 1st, 2007 20:44
Looking for Advice CurlyQRanch Introduce Yourself 12 Mar 5th, 2007 04:06
Hello All, could use some advice JamesPhillips Introduce Yourself 1 Sep 6th, 2006 02:00


All times are GMT. The time now is 17:17.


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