Footer Appears Different In Builder

Hi

I have a footer that is assigned to all pages. When I view the footer in the footer builder, it looks like this

But when I view it in the home page, it looks like this. In other pages it appears OK

Screen Shot 2563-07-17 at 16.55.27

The footer CSS has the following to format the FORM

$el {
  width: 100%;
}
.feastform form {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    align-content: stretch;
    flex: 0 1 86%;
    height: auto;
    max-width: 900px;
    display: flex;
}
.feastform form > fieldset {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex: 1 0 15rem;
    margin: 0.1rem 0.1rem 0.1rem 0.1rem;
    background-color: transparent;
}
.feastform form > fieldset > .submit {
    margin-top:0 !important;
}
.feastform form > fieldset > input {
    margin-bottom: 0px !important;
  	border-radius: 3px !important;
}
.x-btn-rounded {
  font-weight: bold
}

Any idea what is causing the footer to appear. this way? The section below the form is all over the place as well.

Regards

Hello @guybower1,

Thanks for writing in!

After an hour of troubleshooting, I found out that you are having the issue because you have inserted this custom css in two of your image elements in your header:

@media screen and (max-width: 480px) {
  .x-image.logo {
    margin-left: -1.2em;
  }

This code is incomplete and have affected the entire page styling instead. I went ahead and corrected it already into using this:

@media screen and (max-width: 480px) {
  .x-image.logo {
    margin-left: -1.2em;
  }
}

Kindly check your site now.

Hi Runenel

Thanks so much for your reply and apologies for the trouble it caused. A single pesky bracket.

I will try to be more careful when doing that

Thank you so much

Hi @guybower1,

Great we are able to help you out.

Thanks

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.