iframes. How to cover the whole area of the container?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    iframes. How to cover the whole area of the container?

    I have this live web site : http://portfoliozervas.heliohost.org...en/findus.html (I have used bootstrap framework for my web site)

    I need my google map to cover the whole area of my page . I tried width = 100% , but didn't work.

    I'd like to mention that it covers the whole area only for desktops , but for laptops it doesn't cover the area area of my web page.

    How can I make iframe cover the whole area of my web page not only for desktops , but for laptops as well ?

    Thank you in advance . ()
    Last edited by zervas; 12.05.17, 09:15.

    #2
    Remove the left and right padding on class: .col-sm-12 in bootstrap.css

    Comment


      #3
      you've been of great help. You're absolutely right. Thank you very much .

      besides your solution, I had to put float : left; in order to be perfectly aligned
      Code:
      iframe {float: left;}
      Last edited by zervas; 13.05.17, 09:10.

      Comment

      Working...
      X