Hi Guys,
I developed an interactive map to use on my site. I managed to show it on my page by inserting the html in the pagebuilder, linking the js files via functions.php and adding the css to custom.css.
Now i’d like to show the map on the full width of the page. I added a section id for the section of the map called “kaart”.
One of the things i tried in css was #kaart . container {width:100% !important;} but amongst many other things, this didn’t work. If i only use .container the whole site gets wide and that’s not my intention.
Is there any way to achieve this? I’d really appreciate if you could point me in the right direction!
Kind regards,
Lucas van Rooij
Hi lucasvrooij!
Sorry for the late reply. Your site is asking me for pass/user to view it, could you provide us with the details please? You can post them here as a private reply.
Regards,
Rikard
Hey!
You can try this:
div#kaart .container {
width: 100% !important;
max-width: 100% !important;
padding: 0;
}
Best regards,
Ismael
Thanks Ismael! Did the trick:)