Idk y? but i just dont understand positioning

This is a discussion on "Idk y? but i just dont understand positioning" within the Web Page Design section. This forum, and the thread "Idk y? but i just dont understand positioning 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 Dec 15th, 2006, 01:41
Junior Member
Join Date: Oct 2006
Location: uranus
Posts: 38
Thanks: 0
Thanked 0 Times in 0 Posts
Idk y? but i just dont understand positioning

ok...I'm back!

But, unfortunately I have the same problem
http://www.freewebs.com/max-nation/Index.html
It's pretty obvious what my problem is....I need the buttons next to the center container. Sooooo.........

anyway....
this is my html
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html>
<head>
<title>Max-Nation ~ The Unofficial Maxim Afinogenov Appreciation Website</title>
<link rel="stylesheet" type="text/css"
href="http://www.freewebs.com/max-nation/Max%2DNation.css" />
</head>
<body>
<img src="http://www.freewebs.com/max-nation/facts%5Fbutton.png" />
<br />
<img src="http://www.freewebs.com/max-nation/stats%5Fbutton.png" />
<br />
<img src="http://www.freewebs.com/max-nation/photo%2Dgallery%5Fbutton.png" />
<br />
<img src="http://www.freewebs.com/max-nation/home%5Fbutton.png" />
<br />
<img src="http://www.freewebs.com/max-nation/join%5Fbutton.png" />
<br />
<img src="http://www.freewebs.com/max-nation/T%2Dshirts%5Fbutton.png" />
<div id="container">
<span id="header">
<span id="logo">
<img src="http://www.freewebs.com/max-nation/slug%20with%20background%20blue.jpg" alt="Sabres Logo" />
</span>
</span>
<img src="http://www.freewebs.com/max-nation/max.jpg" id="max" alt="Maxim Afinogenov">
</div>
</body>
</html>
and the CSS
Code: Select all
body
{
background-image: url('http://www.freewebs.com/max-nation/blue%20textured%20background.jpg');
background-repeat: repeat;
margin: 0px;
padding: 0px;
}
#container
{
margin-left: 20%;
margin-bottom: 0%;
margin-right: 20%;
margin-top: 0%;
background-color: #000031;
width: 60%;
height: 100%;
}

#logo
{
margin-left: 0px;
margin-top: 0px;
}

img#max
{
height: 800px;
width: 600px;
border-color: #FFFFFF;
margin-bottom: 0%;
border-width: 2px;
border-style: dotted;
}

#header
{
width: 600px;
height: 163px;
}

CAN ANYONE HELP ME!!!!!!!??????????

I've been stuck for quite a bit, and I don't know what I'm doin wrong
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 Dec 15th, 2006, 01:50
Reputable Member
Join Date: Jul 2006
Location: Scotland
Age: 22
Posts: 357
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Idk y? but i just dont understand positioning

I'm being really lazy and haven't looked at your code (sorry); but can't you just float the menu to the left?
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 Dec 15th, 2006, 01:54
Junior Member
Join Date: Oct 2006
Location: uranus
Posts: 38
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Idk y? but i just dont understand positioning

I'll look into it, thx for the speedy response!
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 Dec 15th, 2006, 09:33
Ryan Fait's Avatar
Elite Veteran
Join Date: May 2006
Location: Las Vegas
Posts: 3,787
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Idk y? but i just dont understand positioning

Floats and positioning are two of those things you have to understand by tinkering around. I haven't yet seen a really good resource explaining what they do (and more importantly, don't do) to the content around the elements being floated or positioned. Just play play play!
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 Dec 15th, 2006, 10:06
Reputable Member
Join Date: Jul 2006
Location: Scotland
Age: 22
Posts: 357
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Idk y? but i just dont understand positioning

floats are relatively easy to understand? Maybe I've just played around with them too much
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 Dec 15th, 2006, 10:15
Ryan Fait's Avatar
Elite Veteran
Join Date: May 2006
Location: Las Vegas
Posts: 3,787
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Idk y? but i just dont understand positioning

Yeah, they seem to give beginners a lot of trouble, though. When moving from table designs, there was no such thing as taking an element out of the normal flow of the page.
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 Dec 16th, 2006, 12:19
Elite Veteran
Join Date: Sep 2006
Location: Pink House
Posts: 3,946
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Idk y? but i just dont understand positioning

Do you want to move the logo and photo up or the nav bars down?
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 Dec 17th, 2006, 01:49
Junior Member
Join Date: Oct 2006
Location: uranus
Posts: 38
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Idk y? but i just dont understand positioning

nav bars down
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 Dec 17th, 2006, 11:33
Reputable Member
Join Date: Jul 2006
Location: Scotland
Age: 22
Posts: 357
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Idk y? but i just dont understand positioning

??

Do you mean you want a gap at the top?


To get them on the same level, just put a div around the menu, then add something like:

Code: Select all
 #menu (float:left;)
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
css, css positioning, positioning, positioning css

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
OT: What ONE thing should the CIO understand about managing/motivating developers? estherschindler Webforumz Cafe 6 Jun 24th, 2008 20:37
please help me understand! CSS Menu in IE GONE WRONG! daraclare Web Page Design 12 Apr 29th, 2008 19:15
New to JS dont get this smithsf22 JavaScript Forum 1 Mar 14th, 2008 16:10
i dont know what to do next bats Other Programming Languages 0 Apr 21st, 2006 21:10


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


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