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

  • Home
  • SEARCH
  • 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 8018775
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T21:12:30+00:00 2026-06-04T21:12:30+00:00

I am designing master page for one good website. I have used firebug to

  • 0

I am designing master page for one good website. I have used firebug to design the appropriate css, but problem is when I open the page in IE. Alignment differs much.

Problem is with width, margin that I have placed for div blocks.

The whole page is here below.

<html>
<head>
<link src="Styles.css" type="text/css"/>
<style type="text/css">
body{ 
    height:100%;
    font-family: Tahoma;
    width: 800px;
    margin: auto;
    color:#403e3e,
    color:gray;font-size: 12pt;
}
#sections{
    width:100%;
    background-color:#EFEFEF;
    float:left;
}
#container{
    background-color:#FFFFFF;   
    float: left;
}
.sectionBlock{
    float:left;
    width:30%;
    border:0px dotted red;
    padding: 10px;
}
h3{ 
    color:#990033;
    font-family:Maiandra GD;
    margin:9px;
}
#info{
    float:left;
}
.secHead{ 
    font-size:20pt;
    font-family:Maiandra GD;
    color:#990033;
    margin-bottom:2px;
}
.secDescription{ font-size:10pt;}
a{ color:#990033;}
#navigation ul{ 
    background-image: url("img/bar.jpg");
    margin: 0;
    height:32px;
    padding-top: 8px;
}
#navigation ul li{display:inline;padding:20px; font-size:16px;color:#302e2e;}
#footer {background-color:#E01B6A;}
#footer .footerText{margin:auto;width:100%;width: 340px;}

</style>
</head>

<body>
    <div id="header">

    </div>
    <div id="navigation">

      <ul>
         <li>Home</li>
         <li>Application Tracker</li>    
         <li>Insurance Policy downloads</li>     
         <li>Parner Login</li>   
         <li>SiteMap</li>    
      </ul>
    </div>
    <div id="container">
        <div id="intro">
        <h3>How can we help you? </h3>
        Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus,
        omnis voluptas assumenda est, omnis dolor repellendus. Rerum necessitatibus saepe eveniet. 
         <a href="#moreInfo">Find out more</a>
        </div>

        <div id="sections">
          <h3>Lorem Ipsum</h3>
            <div class="sectionBlock">
              <div class="secHead"> Tenants
              </div>
              <div class="secDescription">
             Lorem ipsum dolor sit amet, consecteur adipiscing elt, sed do elusmod tempor.<br/>
             <a href="#Tenants">Find out more</a>
              </div>
            </div>

            <div class="sectionBlock">
              <div class="secHead">Landlords
              </div>
              <div class="secDescription">
              Excepteur sint occaecat cupidatat non proident, sunt in culpa elt, sed do elus mod tempor qui officia deserunt mollit anim id est laborum.<br/>
              <a href="#Landlords">Find out more</a>
              </div>            
            </div>
            <div class="sectionBlock">
              <div class="secHead">Letting Agents
              </div>
              <div class="secDescription">
  Excepteur sint occaecat cupidatat non proident, sunt in culpa elt, sed do elus mod tempor qui officia deserunt mollit anim id est laborum.<br/>
                <a href="#Letting Agents">Find out more</a>
              </div>            
            </div>      

        </div>
        <div id="info">
        Maras is an independent company specialising in supplying services to the residential lettings industry. If you are an applicant,
            letting agent or landlord Maras is here to help you. Maras Group is directly authorised and regulated by the Financial Services
            Authority for general insurance activities.
        <ul>
            <li>Providers of services to the letting industry for more than 15 years. </li>
            <li>Over 250,000 references processed per annum. </li>
            <li>Over 1.5 Million telephone calls processed per annum. </li>
            <li>One of the largest providers of services to the lettings industry. </li>
            <li>Real value for money products and services. </li>
        </ul>   
       </div>

    </div>
    <div id="footer"> <div class="footerText">Copyright 2008@, maras. All Rights Reserved.</div></div>
</body>

</html>

Can anyone suggest style changes so that it should look same view in all browsers ?

  • 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-04T21:12:31+00:00Added an answer on June 4, 2026 at 9:12 pm

    I’ve added a wrapper around the content of your page and set the ‘text-align: center’ to the body (which helps with centering elements in IE).

    See the code below and tell me whether it works for you

    <html>
    <head>
    <link src="Styles.css" type="text/css"/>
    <style type="text/css">
    body{ height:100%; font-family: Tahoma; color:#403e3e, color:gray;font-size: 12pt; text-align: center;}
    #wrapper { width: 800px; margin: 0 auto; text-align: left;}
    #sections{ width:100%; background-color:#EFEFEF; float:left; }
    #container{background-color:#FFFFFF; float: left;}
    .sectionBlock{ float:left; width:30%; border:0px dotted red; padding: 10px; }
    h3{  color:#990033; font-family:Maiandra GD; margin:9px; }
    #info{ float:left; }
    .secHead{  font-size:20pt; font-family:Maiandra GD; color:#990033; margin-bottom:2px; }
    .secDescription{ font-size:10pt;}
    a{ color:#990033;}
    #navigation ul{  background-image: url("img/bar.jpg"); margin: 0; height:32px; padding-top: 8px; padding-left:40px;}
    #navigation ul li{display:inline;padding:20px; font-size:16px;color:#302e2e;}
    #footer {background-color:#E01B6A; text-align: center;}
    #footer .footerText{margin:auto;width:100%;width: 340px;}
    </style>
    </head>
    
    <body>
        <div id="wrapper">
            <div id="header">
            </div>
            <div id="navigation">
              <ul>
                 <li>Home</li>
                 <li>Application Tracker</li>    
                 <li>Insurance Policy downloads</li>     
                 <li>Parner Login</li>   
                 <li>SiteMap</li>    
              </ul>
            </div>
            <div id="container">
                <div id="intro">
                <h3>How can we help you? </h3>
                Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus,
                omnis voluptas assumenda est, omnis dolor repellendus. Rerum necessitatibus saepe eveniet. 
                 <a href="#moreInfo">Find out more</a>
                </div>
    
                <div id="sections">
                  <h3>Lorem Ipsum</h3>
                    <div class="sectionBlock">
                      <div class="secHead"> Tenants
                      </div>
                      <div class="secDescription">
                     Lorem ipsum dolor sit amet, consecteur adipiscing elt, sed do elusmod tempor.<br/>
                     <a href="#Tenants">Find out more</a>
                      </div>
                    </div>
    
                    <div class="sectionBlock">
                      <div class="secHead">Landlords
                      </div>
                      <div class="secDescription">
                      Excepteur sint occaecat cupidatat non proident, sunt in culpa elt, sed do elus mod tempor qui officia deserunt mollit anim id est laborum.<br/>
                      <a href="#Landlords">Find out more</a>
                      </div>            
                    </div>
                    <div class="sectionBlock">
                      <div class="secHead">Letting Agents
                      </div>
                      <div class="secDescription">
          Excepteur sint occaecat cupidatat non proident, sunt in culpa elt, sed do elus mod tempor qui officia deserunt mollit anim id est laborum.<br/>
                        <a href="#Letting Agents">Find out more</a>
                      </div>            
                    </div>      
    
                </div>
                <div id="info">
                Maras is an independent company specialising in supplying services to the residential lettings industry. If you are an applicant,
                    letting agent or landlord Maras is here to help you. Maras Group is directly authorised and regulated by the Financial Services
                    Authority for general insurance activities.
                <ul>
                    <li>Providers of services to the letting industry for more than 15 years. </li>
                    <li>Over 250,000 references processed per annum. </li>
                    <li>Over 1.5 Million telephone calls processed per annum. </li>
                    <li>One of the largest providers of services to the lettings industry. </li>
                    <li>Real value for money products and services. </li>
                </ul>   
               </div>
    
            </div>
            <div id="footer"> <div class="footerText">Copyright 2008@, maras. All Rights Reserved.</div></div>
        </div>
    </body>
    
    </html>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a silverlight telerik RadComboBox. I am designing a master detail page. In
I am designing a master page. The layout is very simple.But height adjustment does
I am designing a page which needs to have boxes (partial views) on both
I am currently designing a master detail gridview. I have two separate objects defined
I have a simple website and I use masterPage for designing my template. everythings
Scenario: I have a pretty standard master page for all my pages. It includes
I have this on my page: <div id=result class=thumbholder><img src=img/thumbs/thumb01.png alt=thumb /></div> CSS: .thumbholder{
Basically I have a masterpage defining the basic layout of the website. What I
I am designing database tables for a master-detail scenario. The specific requirement is that
Designing forms has always been fun, but getting them to send email on the

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.