Page out of place !!!

This is a discussion on "Page out of place !!!" within the Web Page Design section. This forum, and the thread "Page out of place !!! are both part of the Design Your Website category.



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

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Jul 2nd, 2006, 09:40
Up'n'Coming Member
Join Date: May 2006
Location: Kentucky
Age: 19
Posts: 54
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Coty Skaj Send a message via Yahoo to Coty Skaj
Page out of place !!!

On my site www.creative-myspace.com if you minimize the window or change it to any other size other than max then the page elements move and I was wondering how I could fix that and why it does that. Thanks !!!
Reply With Quote

  #2 (permalink)  
Old Jul 2nd, 2006, 10:30
Up'n'Coming Member
Join Date: Feb 2006
Location: London
Age: 25
Posts: 98
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Page out of place !!!

Your using percentages to define the position of the divs.

Try using pixel values instead
Reply With Quote
  #3 (permalink)  
Old Jul 2nd, 2006, 16:38
Junior Member
Join Date: Jun 2006
Location: US
Age: 34
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Page out of place !!!

Cody - I'm assuming you want to center your content so do the following. Create a wrapper div that surrounds all of the elements in your page. Example:
Code: Select all
HTML: Select all
<html>
<body>
<div id="wrapper">
<div id="header">header stuff</div>
<div id="content">
<p>All of your content</p>
</div>
</div>
</body>
</html>
Then apply the following css to the wrapper div:
HTML: Select all
#wrapper
{
width:760px; <--not more than 760px;
margin: 0 auto; <-- the auto value will center the div
}
Thats it...if you have any questions PM me. The key is to surround all of your content(header, content, and footer) within the wrapper div and then apply the above style to the wrapper div

Last edited by tmeyer45458; Jul 2nd, 2006 at 16:41.
Reply With Quote
Reply

Tags
page, place

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
A place for your tag! aplace Link Building and Link Sales 0 Feb 14th, 2007 12:14
Out of place swf timmytots Web Page Design 0 Jul 5th, 2006 18:46
Parent of/ page shows up in place of index.htm Babawawa Introduce Yourself 1 Mar 3rd, 2006 12:07
place following divs in one page centred div antonyx Web Page Design 12 Dec 30th, 2005 21:00


All times are GMT. The time now is 06:07.


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