Currently, I am in the process of revamping the login form for the upcoming Blackboard update. The new theme being introduced is not compatible with our current page layout, so adjustments need to be made. While I am not an expert in design or HTML/CSS, I can navigate through the inspector to troubleshoot and make minor modifications. One thing I find challenging is fine-tuning the position details within the layout.
Although I have almost achieved the desired look for the page, different screen resolutions pose a challenge. For instance, at 1920x1200, the two boxes align perfectly in the center. However, at 1440x900 resolution, they appear off-center to the right. My goal is to ensure that these outlined boxes always remain centered next to each other regardless of the screen size/resolution.
You can visit to view the current state of the page and inspect the CSS properties. Presently, div.loginBody is positioned on the left, while #loginOptions is placed on the right side of the website.
div.loginBody
{
background:url("images/Bb_learn_small.png") no-repeat scroll 65px 21px rgba(255, 255, 255, 0.74);
position:relative;
margin-left: 22%;
margin-top: 2%;
padding-top: 175px;
width: 529px;
border-style: solid;
border-width: 1px;
}
and
#loginOptions
{
background: rgba(255, 255, 255, 0.72);
position: absolute;
float: right;
margin-left: 101%;
top: -1px;
width: 529px;
height: 392px;
border-style: solid;
border-width: 1px;
}
Thank you.