SOLVED

Footer disappears on landing page

Go to solution
Anonymous
Not applicable

Footer disappears on landing page

When I approve and close my landing page, the footer completely disappears on the desktop view, but still shows up on the mobile view. I've looked in the HTML and there's no 'disable' language written in, but no matter what I do, the footer won't show up on desktop.

Has anyone else had this problem?

1 ACCEPTED SOLUTION

Accepted Solutions
Frank_Breen2
Level 10

Re: Footer disappears on landing page

Sorry it's in the CSS, line 154:

Screen Shot 2017-06-01 at 20.49.15.png

View solution in original post

6 REPLIES 6
Frank_Breen2
Level 10

Re: Footer disappears on landing page

Can you share the page url, it sounds like you have the footer set to display:none for desktop, which may be set in a Media Query, but without the code, it's hard to debug.

Anonymous
Not applicable

Re: Footer disappears on landing page

Sure, thanks for taking a look! http://pages.janusintl.us/nopaint.html 

Frank_Breen2
Level 10

Re: Footer disappears on landing page

In the CSS in the <head> replace:

#footer{ display:block; }

with

#footer{ display:block; clear: both; }

That should at least show the footer on desktop.

Anonymous
Not applicable

Re: Footer disappears on landing page

Thanks, Frank! However, I'm not able to see the code that you're seeing. Below is what I'm able to see in the <head>

<meta class='mktoBoolean' id='showFooter' mktoName='Show Footer?' true_value='block' false_value='none' default='true'>

Do you know what we could do to fix it from here?

Frank_Breen2
Level 10

Re: Footer disappears on landing page

Sorry it's in the CSS, line 154:

Screen Shot 2017-06-01 at 20.49.15.png

Anonymous
Not applicable

Re: Footer disappears on landing page

It worked! Thank you so so much, Frank!