My header code includes:
<link href="styles.css" rel="stylesheet" type="text/css"></link>
The script placed in the body is:
<input name="search" type="text" onKeyUp="getScriptPage('box','text_content')" id="text_content" AUTOCOMPLETE="off" size="40"><
The CSS style I have applied to the 'box' ID is:
#box
{
width : 270px;
height : auto;
overflow : auto ;
border : 1px solid #C5C5C5;
background : #F8F8F8;
position : absolute;
left : 460px;
top : 286px;
border-top : none;
text-align : left;
display : none;
}
The issue arises when changing the screen resolution from 1366x768, causing the box position to shift. Is there a way to ensure the box remains fixed regardless of the screen resolution?