css - displacement of a single HTML element at the opening of another -


look @ problem: enter image description here

how make when open popup window footer shifted down?

some css here:

#advanced_search_div_body { height: 100%; width: 817; margin: 0 auto; padding: 0; display: table; background-color: white; }  #foot { padding: 30px 0px; background-color: black; clear: both; position: relative; bottom: 0; width: 100%; overflow: hidden; z-index: 2;  } 

probably need tell footer down of page.

so, change #foot position: relative absolute. try this:

position:absolute; width:100%; bottom:0px; 

or like:

position:fixed; bottom:0; width:100%; 

Comments

Popular posts from this blog

design - Custom Styling Qt Quick Controls -

Unable to remove the www from url on https using .htaccess -