Skip to Content (Press Enter)
OutSystems.com
Personal Edition
Community
Support
Training
Training
Online Training
Developer Schools
Boot Camps
Certifications
Tech Talks
Documentation
Documentation
Overview
ODC
O11
Forums
Forge
Get Involved
Get Involved
Jobs
Ideas
Members
Mentorship
User Groups
Platform
Platform
ODC
O11
Search in OutSystems
Log in
Get Started
Back to Forums
Joop Stringer
4
Views
0
Comments
Login webblock shifting to the right on wide tables
Question
To avoid the login webblock to "disappear" when you have large tables on your screen, change the following in the CSS
Basicly delete the float:right and add the top:0 part
div.Login_Info {
background: url(/RichWidgets/img/Header_Greetings.png) left bottom no-repeat;
_background-image: none; /* IE6 */
_background-color: white; /* IE6 */
_border: 1px solid #CCCCCC; /* IE6 */
/* float: right;*/
/*position the div at the very top-right corner*/
display:block;
position:absolute;
top:0;
right:0;
font-size: 12px;
padding: 4px 18px 6px 8px;
}
Community Guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
See the full guidelines
Loading...