How can I increase padding on mobile for an Instagram plugin?

Hi Gurus,

I’m trying to optimize my web and my knowledge is not good enough :disappointed_face:

Iwould love to get some help if feasible :slightly_smiling_face:

On my page www.doramu.cz I have at the end of the page instagram plugin. On web platform looks just fine, but on mobile i would love to get more space between previous section.

I guess it would look the best to add some margin above Instagram hedding.

Any idea how this is done?

Thanks a lot, live long and prosper :slightly_smiling_face:

Petr

Hi @PetrMachacek

Add this rule to the bottom of theme.css

@media screen and (max-width: 641px) {
#rap__med__instagram {
  margin-top: 20px;
}
}

Adjust PX values to your preference - add more space on top.

Result:

1 Like