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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T23:20:20+00:00 2026-06-01T23:20:20+00:00

I have a flow layout with following two alignment issues Refer Image 1: When

  • 0

I have a flow layout with following two alignment issues

  1. Refer Image 1: When I change the zoo, the title info overlaps the logo.

  2. Refer Image 2: The green box should come as right side of the blue box; currently it is coming on bottom.

How can I correct it? The code is available in this fiddle . Posted here also.

I am sure it is a very basic alignment lesson; however I am not able to figure it out even after many hours? Can you please take a look at it and answer?

Image 1
enter image description here

Image 2
enter image description here

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1">
<title>Support Site </title>
<link href="Styles/MasterStyle.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="wrapper">
    <div id="container">
        <div id="header">
            <div id="logo">
                <img alt="logo" src="Images/Logo.bmp" />
            </div>
            <div id="titleInfo">
                <a href="#">Admin XXXXXXXX Support Site</a>
                <div id="signOut">
                    <a id="logOnStatus" class="signOut" >
                        Logout</a>
                </div>
            </div>
            <div class="clear">
            </div>
        </div>
        <div id="centralContainer">
            <div id="leftNavContainer">
                <div id="subContainerForLeftNav">
                    <div id="adminDiv">
                        <div class="backgroundButton" id="adminButton">
                            <p class="buttonText">
                                The Admin</p>
                        </div>
                    </div>
                    <div class="clear">
                    </div>
                    <div id="vendorDiv">
                        <div class="menuTextHeading">
                            <a class="menuText">The Management</a>
                        </div>
                        <div class="buttonAlign">
                            <div class="backgroundButton" id="connectivityButton">
                                <p class="buttonText">
                                    Test</p>
                            </div>
                            <div class="backgroundButton" id="vendorsButton">
                                <p class="buttonText">
                                    Test</p>
                            </div>
                        </div>
                    </div>
                    <div class="clear">
                    </div>
                    <div id="monitoringDiv">
                        <div class="menuTextHeading">
                            <a class="menuText">Test</a>
                        </div>
                        <div class="buttonAlign">
                            <div class="backgroundButton" id="transactionsButton">
                                <p class="buttonText">
                                    Test</p>
                            </div>
                            <div class="backgroundButton" id="logsButton">
                                <p class="buttonText">
                                    Test</p>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            <div id="mainContainer">
                <div id="transactionContentHolder" class="transactionContentHolder">
                    A
                </div>
            </div>
            <div class="clear">
            </div>
        </div>
    </div>
</div>
</body>
</html>

CSS

body
{
   margin: 0px;
   padding: 0px;
   text-align: center;
   background: Yellow;
}

#wrapper
{
   width: 100%;
   height: auto;
   text-align:left;
   margin: 0 auto;
   /*background: #FFBA31;*/
   background: #FFBA31;
}

#container
{
   width: 100%;
   height: auto;
   margin: 0 auto;
   background: white;

}

#header
{
   width: 100%;
   height: 70px;
   background: white;
   padding: 0 0 10px 0;
   border:1px solid Red;

}

#titleInfo
{
font:bold 18pt Arial;
color:#2377D1; 
width:80%;
   height:35px;
   float:right;
   margin:10px 0 0 10px;
   border-bottom:3px solid #fcda55;
   padding: 10px 0 0 0;
   display:inline;

}

#signOut
{
font:bold 9pt Arial;
   float:right;
   border-bottom:none;
   padding: 0px 10px 0 0;
   margin: 0px 0px 30px 0;
   display:inline;
}



#logo
{
  width:15%;
  height:60px;
  float:left;
  margin:0 0 0 20px;
  display:inline;
  padding: 10px 0 30px 0;
}

#centralContainer
{
   width: 100%;
   height:auto;
   margin: 0 auto;
   background: white;
}

#leftNavContainer
{
   width: 20%;
   height: 700px;
   /*float: left;*/
   margin: 0 0 0 10px;
   display: inline;
   background: white;
   border:1px solid Blue;   
}

#subContainerForLeftNav
{
 width: 190px; 
 height: auto;

}

#mainContainer
{
   width: 75%;
   height: 700px;
   float: left;
   margin: 0 0 0 30px;
   display: inline;
   background:white;
   border:1px solid Green;
}




 .menuText
 {
    font:bold 13pt Arial;
   line-height:15pt;
    color:#00A6B5;
 }

.menuTextHeading
{
   height:20px;
   border-bottom:3px solid #fcda55;
   padding:10px 0 10px 0;
   margin:0 0 10px 0;
}

.buttonAlign
{
  height:auto;
  width:auto;
  float: right;
  padding:0 0 0 0;
   margin:0 0 0 0;
}


.backgroundButton
{      
   width:150px;
   height:86px;
   display: block;
    margin: 0px 0px 5px 0px;
   background-image:url('../Images/ButtonBackground.bmp');
}

.buttonText
{

   font:bold 15pt Arial;
   line-height:18pt;
   color:#ffffff;
   padding:40px 15px 0 15px;
   margin:0 0 0 0;
   text-align:center;

}

.clear
{
   clear: both;
}
  • 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-01T23:20:22+00:00Added an answer on June 1, 2026 at 11:20 pm

    see fiddle for code and demo

    fiddle: http://jsfiddle.net/L3And/3/

    demo: http://jsfiddle.net/L3And/3/embedded/result/

    Screen Shot:

    enter image description here

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

Sidebar

Related Questions

I have a flow layout. Inside it I have about 900 tables. Each table
I have two panels: main_panel child_panel The main_panel layout is set using: main_panel.setLayout(flowlayout) I
I have following flow of app : First screen is Login screen and if
I basically have the following flow: XML -> JSON -> Spring MVC -> jsp
I have the following 2 column div layout. The left column needs to have
I have a layout page with the following _app.cshtml <div id=top_right> @{ Html.Partial(_LogOnPartial); }
I have panel which is using flow layout. How can I make break in
I have a panel with flow layout, and it can contain a variable number
I have an annoying problem with Java’s layout managers. I have the following situation:
I have a flow layout. Inside it I have about 900 tables. Each table

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.