Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7594691
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T21:29:01+00:00 2026-05-30T21:29:01+00:00

I have a webpage laid out as follows… |———————-| | |———-| | | |

  • 0

I have a webpage laid out as follows…

|----------------------|
|     |----------|     |
|     | Logo div |     |
|     |----------|     |
|                      |
|     |----------|     |
|     |          |     |     
|     | Content  |     |
|     |          |     |
|     |----------|     |
|----------------------|

Currently I’m attempting to center my div (Content) using the following function:

 jQuery.fn.center = function () {
this.css("position","absolute");
this.css("top", (($(window).height() - this.outerHeight()) / 2) + 
                                            $(window).scrollTop() + "px");
this.css("left", (($(window).width() - this.outerWidth()) / 2) + 
                                            $(window).scrollLeft() + "px");
return this;

}

which I obtained from another SO question: Using jQuery to center a DIV on the screen

This function works fine if my resolution is large enough, however on smaller screens it causes the div I’m centering to “come up” and share space with a div containing a Logo above it. So what I’d like to achieve with jQuery is to center it vertically in-between the logo div #logo and the “end” of the page without floating on top of the logo div.

How would I do this using jQuery?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T21:29:03+00:00Added an answer on May 30, 2026 at 9:29 pm

    Since it is absolutely positioned you can’t really reference it in relation to another div.

    What you need to do is check the height/width calculations and if they are outside of the minimum requirements then replace them with a fixed value. You could hard code the fixed value or use JQuery to get the height of the logo div.

    Something along the lines of:

    var h = 100; //Height of logo div
    var top_position = (($(window).height() - this.outerHeight()) / 2) + $(window).scrollTop();
    
    if(top_position < h)
        top_position = h;
    
    this.css("top", top_position + "px");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a webpage including the following div: <div class='book_box'> <table border=0 cellspacing=0> <tr>
I am trying to figure out how to do the following. I have webpage
I have a webpage that sends out emails using phpmailer. I set the host
I have a webpage, on which I am using Ajax to replace different divs
I have a webpage that implements a set of tabs each showing different content.
I have a webpage made in perl and dojo using a PostgreSQL database. I
I have a webpage where I'm trying to figure out how to click on
I have a webpage with multiple checkboxes (code for one of them below): <div>
I have a web page that is laid out in HTML and has some
I have webpage with a video element nested in a div class=video-container along with

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.