Web Design and Development Forums

Centering a webpage - Liquid

This is a discussion on "Centering a webpage - Liquid" within the HTML Forum section. This forum, and the thread "Centering a webpage - Liquid are both part of the Design Your Website category.


Go Back   Webforumz.com > Design Your Website > HTML Forum

Welcome to Webforumz.com.
Register Now Register now!

Reply
 
LinkBack Thread Tools Rate Thread
Old Mar 30th, 2008, 23:11   #1 (permalink)
New Member
 
Join Date: Mar 2008
Location: Leicester
Age: 21
Posts: 7
Centering a webpage - Liquid

Hi,

I am building a website and would like to make it liquid. The website address is:

http://www.cse.dmu.ac.uk/~p04283218/mainframe9/

Can anyone point me in the right direction as to how I would do this please.

Thanks.
pritmadlani is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old Mar 30th, 2008, 23:38   #2 (permalink)
Lead Administrator
 
saltedm8's Avatar
 
Join Date: Nov 2005
Location: Always About
Age: 27
Posts: 1,061
Blog Entries: 1
Send a message via MSN to saltedm8
Re: Centering a webpage - Liquid

you will have to make a container and centre that, then put everything inside that

to create a container you need something like this

Code: 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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
#container {
    margin: 0 auto;
    width:600px;
    height:209px;

}
-->
</style>
</head>

<body>
<div id="container"></div>
</body>
</html>
the 'margin: 0 auto;' is what centres it

then you need to put your content layout within it like so

Code: 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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
#container {
    margin: 0 auto;
    width:600px;
    height:209px;

}

#innerlayout {
    width:40x;
    height:50px;
    margin:5px 5px 0 5px;
}
-->
</style>
</head>

<body>
<div id="container">
<div id="innerlayout"></div>

</div>
</body>
</html>
notice that the div has been removed from next to container and placed below the innerlayout div, this is saying, 'this is what is inside me'

hope that helps to get you started

also have a look here http://www.maxdesign.com.au/presentation/liquid/
__________________
recipebite.co.uk - its a working progress...

Last edited by saltedm8; Mar 30th, 2008 at 23:53. Reason: added link
saltedm8 is offline  
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

Thread Tools
Rate This Thread
Rate This Thread:

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
Centering webpage for widescreen monitors brianfall New to Web Design 8 Jun 30th, 2007 12:41
Liquid Layouts and Max-Width Sporky CSS Forum 1 Jun 4th, 2007 21:33
Trying to create realistic liquid morph silvermario Flash & Multimedia Forum 1 Sep 30th, 2006 00:51
How important do you think liquid CSS is? uqwebdesign CSS Forum 28 Jun 11th, 2006 23:57
what's the point of liquid layouts? thadley CSS Forum 15 Mar 16th, 2006 03:24



Latest Updates

All Points SEO Security Advisory - CHECK YOUR SITE NOW!

Creative Coding :: February 2008

Webforumz is sponsored by: WESH UK Web Hosting
All times are GMT. The time now is 11:00.

Sleep Study Scoring :: Free Bet :: Website Templates :: Online Betting :: Bookmakers :: Funny Quotes :: Internet Recruitment Software :: Microsoft CRM Experts :: Online Casino :: Decorated Christmas Trees :: Midwife Forums :: Football Betting :: Ecommerce Software :: Web Hosting :: Football Stats :: Dry Cleaning Collection :: xtreme wales - extreme clothing :: Apuestas :: Sharepoint Consultants :: Website Optimisation :: Office Clearance London :: Sharepoint Experts :: Sports Betting :: Casino :: Website Templates :: Web Design Development India :: Online Gambling

Powered by: vBulletin Version 3.7, Copyright ©2000 - 2008, Jelsoft Enterprises Limited.
© 2003-2008 Webforumz.com : All Rights Reserved
Search Engine Friendly URLs by vBSEO 3.2.0 RC6


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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59