Site logo

Archived topic

Removing of 1px white padding in the footer

1 reply · Started by Marc-Andre on June 5, 2021

Viewing posts 1–2 of 2

Hi, I don't understand why, but I have a very tiny (probably 1px) white space or padding at the left of the footer. However, everything is settled on full width and I don't find any parameters that could cause this little issue. Do you have a suggestion of something I could try to correct this?

Hi there,

That's coming from this CSS added in the Additional CSS field in the customizer:

.separate-containers .inside-article,
.separate-containers .sidebar .widget,
.site-header,
.main-navigation:not(.slideout-navigation):not(#sticky-placeholder),
.site-footer {
	border: 1px solid rgba(0,0,0,0.08);
}

You can edit it to this to exclude the footer:

.separate-containers .inside-article,
.separate-containers .sidebar .widget,
.site-header,
.main-navigation:not(.slideout-navigation):not(#sticky-placeholder) {
	border: 1px solid rgba(0,0,0,0.08);
}

Let me know if this helps :)

This archived topic is closed to new replies.