Archived topic
Footer Text Running Off Right Side of Page
3 replies · Started by Kyle on February 1, 2019
I have some text in my footer, and it seems to look correct when editing the page, but when viewing in a web browser the text shoots off the right side of the page. I have attempted to modify the Footer Width=Contained and Inner Footer Width=Contained. That didn't seem to help. I also tried changing the Footer Widget Area Padding, both the left and the right padding. I increased the number I assumed that would shrink the text area.
Hi there,
try adding this CSS:
@media (min-width: 768px) {
.site-footer {
width: calc(100% - 200px);
margin-left: 0 !important;
}
}
That fixed the issue.
Great to hear that!