Please check this site is there any solution for this problem?

This is a discussion on "Please check this site is there any solution for this problem?" within the Web Page Design section. This forum, and the thread "Please check this site is there any solution for this problem? 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 3rd, 2006, 05:41
New Member
Join Date: Nov 2006
Location: KSA
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Please check this site is there any solution for this problem?

I am facing the same problem as in the this link below : http://www.csscreator.com/node/11291
I am using absolute position to put my all divs #banner,#left ,#center,#right in liquid layout , everything fine.
But when i tried to put the #footer i am faced the same prolem as in the link above.
Is there any solution to avoid overlapping of the #footer div?
Or no solution to this problem i have to using relative position instead of absolute position, but i don't want to use relative positioning.
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 6th, 2006, 12:19
Reputable Member
Join Date: May 2006
Location: Warrington, UK
Posts: 428
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Please check this site is there any solution for this problem?

you need a #divclearer .... this runs all the way accross your page and is before the footer... but after the column divs ..... i cant remember the code off the top of my head, but basically the clearer effectivly pushes the footer down as the columns increase in lenght..... ill see if i can dig some more info up if this didnt help
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 6th, 2006, 13:22
New Member
Join Date: Nov 2006
Location: KSA
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Please check this site is there any solution for this problem?

Quote:
Originally Posted by Accurax View Post
you need a #divclearer .... this runs all the way accross your page and is before the footer... but after the column divs ..... i cant remember the code off the top of my head, but basically the clearer effectivly pushes the footer down as the columns increase in lenght..... ill see if i can dig some more info up if this didnt help
Thank u for u reply
I created #divclear and put it before #footer but nothing happen same problem can u please explain more, see the code below
#divcontent
{
position:absolute;
top :70;
left:20%;
width:60%;
font-size:0.8em;
}
#divclear
{
clear:both;
}
#divfooter
{
position:absolute;
bottom:0px;
left:0px;
width:100%;
height:20px;

}
In HTML
<div id="divcontent"></div>
<div id ="divclear"></div>
<div id="divooter"></div>

Footer is coming in the middle of the divcontent if u browse the HTML and if the divcontent height/lenght increased.

Last edited by abdghadir; Dec 6th, 2006 at 13:25.
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 6th, 2006, 13:57
Daniel's Avatar
Elite Veteran
Join Date: Sep 2006
Location: The Kingdom of Rabbits
Age: 22
Posts: 2,051
Blog Entries: 12
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Please check this site is there any solution for this problem?

im not an expert but that code doesnt look right - whats it meant to do?
Last Blog Entry: Assassin's Creed (Nov 22nd, 2007)
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 8th, 2006, 17:04
Elite Veteran
Join Date: Aug 2005
Location: That Place
Posts: 2,044
Blog Entries: 1
Thanks: 0
Thanked 37 Times in 37 Posts
Re: Please check this site is there any solution for this problem?

<div id="divooter"></div> should be <div id="divfooter"></div> unless it is just a typo here.
__________________

Last Blog Entry: Apps every Mac based web dev should consider (Jul 10th, 2008)
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 9th, 2006, 14:52
BGarner's Avatar
Reputable Member
Join Date: Oct 2006
Location: In front of the computer.
Posts: 213
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Please check this site is there any solution for this problem?

I don't know if this answers your question, but I always code my footer differently...

Code: Select all
html,body {
     height: 100%;
}
 
div#divcontent { 
     position: absolute;
     top: 70;
     left: 20%;
     width: 60%;
     font-size: 0.8em;
}
 
div#divfooter {
     position: absolute;
     top: 100%;
     left:0px;
     width:100%;
     height:20px;
I didn't check it, but I think that's right. Let me know if this helps.
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 9th, 2006, 14:53
BGarner's Avatar
Reputable Member
Join Date: Oct 2006
Location: In front of the computer.
Posts: 213
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Please check this site is there any solution for this problem?

Oh yeah I forgot an ending } thingy.
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 10th, 2006, 02:58
Elite Veteran
Join Date: Dec 2005
Location: On Internet
Posts: 4,859
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Please check this site is there any solution for this problem?

hehehe...lol
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 10th, 2006, 09:03
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: Please check this site is there any solution for this problem?

Don't forget the thingy
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #10  
Old Dec 10th, 2006, 09:12
Elite Veteran
Join Date: Dec 2005
Location: On Internet
Posts: 4,859
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Please check this site is there any solution for this problem?

Yeah, never for get the ending thingy...hehehe
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #11  
Old Dec 11th, 2006, 18:37
Reputable Member
Join Date: Dec 2005
Location: Texas
Age: 19
Posts: 328
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Please check this site is there any solution for this problem?

I hate when i forget the thingy. It makes me feel all dirty.

[quote "borat"]High Five[/quote]
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #12  
Old Dec 12th, 2006, 00:52
Elite Veteran
Join Date: Dec 2005
Location: On Internet
Posts: 4,859
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Please check this site is there any solution for this problem?

hahaha...lol
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #13  
Old Dec 12th, 2006, 03:05
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: Please check this site is there any solution for this problem?

Haha, High Five!! That movie was so funny.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #14  
Old Dec 12th, 2006, 03:07
Elite Veteran
Join Date: Dec 2005
Location: On Internet
Posts: 4,859
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Please check this site is there any solution for this problem?

hehehe...lol
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #15  
Old Dec 12th, 2006, 09:12
New Member
Join Date: Nov 2006
Location: KSA
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Please check this site is there any solution for this problem?

Quote:
Originally Posted by BGarner View Post
I don't know if this answers your question, but I always code my footer differently...

Code: Select all
html,body {
     height: 100%;
}
 
div#divcontent { 
    position: absolute;
    top: 70;
    left: 20%;
    width: 60%;
    font-size: 0.8em;
}
 
div#divfooter {
     position: absolute;
     top: 100%;
     left:0px;
    width:100%;
    height:20px;
I didn't check it, but I think that's right. Let me know if this helps.
Thank u , i checked same problem u can open the attached doc here "same see.doc", and u can see how the footer is coming in the middle of the text in the content div
Attached Files
File Type: doc same see.doc (92.0 KB, 6 views)
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
absolute, positioning

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
Check out my site coldy Free Web Site Critique 2 Apr 24th, 2008 11:39
Check out this Web site, please! phoon Free Web Site Critique 4 Apr 10th, 2008 14:03
solution to IE7 min-height problem? edd_jedi Web Page Design 10 Nov 21st, 2006 12:11


All times are GMT. The time now is 12:24.


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