I have prepared this piece of code. I would like to change two things: 1) width:100% -> doesn't work 2) It should be sticky not floating on my website. How to change this?
<div style="overflow:hidden;width: 1800px;position: relative;"><iframe src="https://maps.google.com/maps?height=300&hl=en&q=United%20Kingdom+(Map)&ie=UTF8&t=&z=5&iwloc=B&output=embed" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe></div>
I have added to my style.css:
iframe {
width:100%;
height:300px;
}
But If I am changing <div style="overflow:hidden;width: 1800px;
to <div style="overflow:hidden;width: 100%;
My map is gone.