Forum FAQForum FAQSearchSearch MemberlistMemberlist Forum ignore listForum ignore list RegisterRegister ProfileProfile Log in to check your private messagesLog in to check your private messages Log inLog in
pozicioniranje footera s CSS-om

 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    mi3dot.org Forum Index -> Client-side
View previous topic :: View next topic  
Author Message
AngalotH



Joined: 23 Jul 2004
Posts: 70

PostPosted: 12.10.2005 16:55    Post subject: pozicioniranje footera s CSS-om Add user to your forum ignore list Reply with quote

Kako dobit da mi se footer postavlja na dno prozora ako je visina sadrzaja manja od visine prozora i da mi se istovremeno postavlja na dno stranice u slucaju da je visina sadrzaja veća od visine prozora. Hvala unaprijed.
Back to top
View user's profile Send private message MSN Messenger
Eric



Joined: 27 Jun 2005
Posts: 248
Location: Rijeka on rails

PostPosted: 12.10.2005 17:36    Post subject: Add user to your forum ignore list Reply with quote

http://www.themaninblue.com/writing/perspective/2005/08/29/

ja radim ovako..

_________________
I WRITE BEAUTIFULL CODE, NO MORE, NO LESS.
http://del.icio.us/jardas
Back to top
View user's profile Send private message Send e-mail Visit poster's website
gog



Joined: 18 Jun 2004
Posts: 679
Location: zagreb

PostPosted: 12.10.2005 18:48    Post subject: Add user to your forum ignore list Reply with quote

http://www.themaninblue.com/experiment/footerStickAlt/
Back to top
View user's profile Send private message Visit poster's website
red



Joined: 03 May 2004
Posts: 919
Location: Zabok

PostPosted: 12.10.2005 20:25    Post subject: Add user to your forum ignore list Reply with quote

Ofkors, oo je nešto što se nađe i u http://www.mi3dot.org/forum/viewtopic.php?p=52228 Wink

_________________
Get busy living, or get busy dying.
Back to top
View user's profile Send private message Visit poster's website Twitter profile
štrumfhoza



Joined: 24 Feb 2005
Posts: 89

PostPosted: 12.10.2005 22:15    Post subject: Add user to your forum ignore list Reply with quote

HTML
[url]<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Three-Column Layout Demonstration</title>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1" />
<link href="3col-float.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top">
<h1>
This is the header area of the three column plus header
layout
</h1>
</div>
<div id="wrapper">
<div id="left">
<p>
This left column must appear first in the HTML code. Using CSS, it is floated
to the left side of the &quot;wrapper&quot; block that encloses all three columns.</p>
<p>If you assign a background color or image to this column, you will also
need to style the &quot;wrapper&quot; block so that the background is matched when
this isn't the longest column on the page. </p>
</div>
<div id="right">
<p>
This right column actually comes second in the code. This is necessary
for it to line up with the top of the other two columns when floated. </p>
</div>
<div id="center">
<p>
This center column actually appears last in the HTML code. This is a necessary
evil of this particular method. Only the
absolute positioning method discussed previously allows this column to
come first.</p>
<p>To leave room for the side columns, this center column
has left and right margins equal to their respective widths (plus additional
spacing).</p>
</div>
<div id="clear"></div>
</div>
<div id="footer">
<p>
This footer should float below the three columns.
</p>
</div>
</body>
</html>[/url]

CSS
[url]body {
margin: 0;
padding: 0;
}
#top {
margin: 20px;
padding: 10px;
background: #ccc;
height: 100px;
}
#wrapper {
margin: 0 10px;
padding: 0;
}
#left {
float: left;
width: 200px;
}
#right {
float: right;
width: 200px;
}
#center {
margin-left: 210px;
margin-right: 210px;
background-color: #ccc;
}
#clear {
clear: both;
}
#footer {
background: #ccc;
margin: 20px;
text-align: center;
}

/* Removes default top margin from left/right column paragraphs in Mozilla */
div > p {
margin-top: 0;
}
[/url]

poglej ovo možda pomogne
Back to top
View user's profile Send private message
Display posts from previous:   
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    mi3dot.org Forum Index -> Client-side All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group