position - Add html element left of centered content -


my client want have 1000px width centered container ad banner left. problem should obvious. struggle centering content , placing ad banner @ same time. when screen width 1024px banner shouldn't visible. possible? how?

here's mean:

enter image description here

using should allow hide banner while screen width less 1024px

@media screen , (max-width : 1024px) {     .yourbannerclass { display:none; } } 

concerning banner position, why don't use "position:absolute" place ?


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -