How do I remove white space around edges?

Each element on a Bubble page have it’s own id like baTjvn. I was using browser developper to get it

I think I got it. this bit?

Thank you. Got it to work. That’s it: baTjvn

1 Like

Thank you for your help.

Before we depart, could you help me out with this.

How do I add multiple pages inside the same code
< style >
.bubble-element.Page.PAGE1 .bubble-element.Page.PAGE2 .bubble-element.Page.PAGE3 {
padding: 0px !important;
}
< /style >

<style>
.bubble-element.Page.page1,
.bubble-element.Page.page2,
.bubble-element.Page.page3,
.bubble-element.Page.page4 {
    padding-top: 0px !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
}
</style>

This worked!

Stay well my friend

1 Like

An update. Support came back with a solution.

There was a style “None (Custom)” applied to those pages which was causing the white space. As soon as I removed the style the page layout was fixed.