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 8217095
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T12:21:14+00:00 2026-06-07T12:21:14+00:00

I have been working on a site, found here , and it looks fine

  • 0

I have been working on a site, found here, and it looks fine on my monitor (1440 x 900) however it looks very plain when displayed on an oversized monitor. I give the outer box an absolute height and width and this is obviously the reasoning for my issue but what could I do to fix this problem when the images are all a fixed height and width?

I read somewhere that I could do a check to see what dimensions the monitor is on page load – would anyone recommend this?

On a larger monitor there is a lot of blank space to the left and right, and also below the outer box.

thank you for any help!

-Evan

  • 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-06-07T12:21:15+00:00Added an answer on June 7, 2026 at 12:21 pm

    You can do it using two ways:

    1. CSS 3 Media Queries
    2. Fluid Layout

    Since you said you will be supporting IE too, CSS 3 Media queries won’t be working below IE 9, so lets use fluid layout. For this, you can do a few stuffs:

    CSS Changes

    #full-height-template-container {width: 1225px;}
    #navigation-menu-container {width: 149px;}
    #static-frontpage-padding {width: 855px;}
    
    Replace it to:
    #full-height-template-container {width: 90%;}
    #navigation-menu-container {width: 20%;}
    #static-frontpage-padding {width: 80%;}
    

    A few adjustments might be necessary.

    CSS 3 Media Queries

    Media queries are one of the most exciting aspects about CSS today. They will allow us to change our layouts to suit the exact need of different devices – without changing the content.

    Example & Demo for CSS 3 Media Queries

    HTML Markup

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
        <title>Media query Resolution Dependent Layout</title>
        <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
        <link rel="stylesheet" type="text/css" href="stylesheets/master.css" />
    </head>
    <body>
    <div id="container">
        <h1>
            Site name
        </h1>
        <div id="nav">
            <ul>
                <li><a href="#">Link 1</a></li>
                <li><a href="#">Link 2</a></li>
                <li><a href="#">Link 3</a></li>
            </ul>
        </div>
        <div id="content">
            <h2>
                Main heading here
            </h2>
            <p>
                <img class="feature-image" src="fern.jpg" alt="fern" />Lorem ipsum dolor sit amet consect etuer adipi scing elit sed diam nonummy nibh euismod tinunt ut laoreet dolore magna aliquam erat volut. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.
            </p>
        </div>
        <div id="extras">
            <h3>
                Related info
            </h3>
            <p>
                Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.
            </p>
        </div>
    </div>
    </body>
    </html>
    

    CSS code

    /* ----------------------------
    simple reset
    ---------------------------- */
    
    html, body, ul, ol, li, form, fieldset, legend
    {
        margin: 0;
        padding: 0;
    }
    
    h1, h2, h3, h4, h5, h6, p { margin-top: 0; }
    fieldset,img { border: 0; }
    legend { color: #000; }
    li { list-style: none; }
    sup { vertical-align: text-top; }
    sub { vertical-align: text-bottom; }
    
    table
    {
        border-collapse: collapse;
        border-spacing: 0;
    }
    
    caption, th, td
    {
        text-align: left;
        vertical-align: top;
        font-weight: normal;
    }
    
    input, textarea, select
    {
        font-size: 110%;
        line-height: 1.1;
    }
    
    abbr, acronym
    {
        border-bottom: .1em dotted;
        cursor: help;
    }
    
    body
    {
        margin: 20px;
        color: #000;
        background: #fff;
        font: 90%/1.3 "DejaVu Sans", "URW Gothic L", "Helvetica Neue", Helvetica, Arial, "Microsoft Sans Serif", sans-serif;
    }
    
    #container
    {
        float: left;
        width: 1000px;
        background: #bbb;
    }
    
    #nav
    {
        float: left;
        width: 200px;
        background: lime;
    }
    
    #content
    {
        float: left;
        width: 550px;
        margin: 0 0 0 25px;
        background: yellow;
    }
    
    #extras
    {
        float: right;
        width: 200px;
        background: gray;
    }
    
    .feature-image
    {
        float: right;
        margin: 0 0 10px 10px;
    }
    
    @media screen and (max-width:999px)
    {
        #container { width: 800px; }
    
        #extras
        {
            clear: left;
            float: none;
            margin: 0 0 0 225px;
            width: 550px;
        }
    }
    
    @media screen and (max-width:480px)
    {
        #container { width: 400px; }
    
        #nav
        {
            float: none;
            width: auto;
        }
    
        #content
        {
            float: none;
            width: auto;
            margin: 0;
        }
    
        #extras
        {
            float: none;
            width: auto;
            margin: 0;
        }
    
        .feature-image { display: none; }
    }
    

    Demo

    You can find a working demo at CSS3 Media query layout example. Enjoy!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been working on a site for about a week now and we
I have been working on a site that relies heavily on images, and so
I have been working on building my first CSS site using divs and am
I am working on this site: beta.us.lt And I have been playing with firebug
I have an enquiry form on a site, which has been working for a
I have been working on an ASP.Net web site and have been publishing to
been working on a site building software and have a bug thats driving me
I have been looking through the other questions on the site and have found
I have developed a taxonomy for a site that I've been working on that
Have been working on this question for a couple hours and have come close

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.