Link to home
Start Free TrialLog in
Avatar of Melody Scott
Melody ScottFlag for United States of America

asked on

Need help with footers structure

HI, I'm at my wits end. Here is what the blue footer is supposed to look like in desktop view:
http://clinica-americas.com/abdominal-hernia.html

But on some pages I get a different view other views:

The long strip at the bottom: http://clinica-americas.com/appendicitis.html

Any idea what I am missing, here? Thanks!
ASKER CERTIFIED SOLUTION
Avatar of Snarf0001
Snarf0001
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Melody Scott

ASKER

Thanks, I'll look at that!
Ok, so I got this page working: http://clinica-americas.com/appendicitis.html

But then if I make the same pages to these, there is no change:

http://clinica-americas.com/gallbladder.html
http://clinica-americas.com/hiatal-hernia.html

They really look the same to me.. any thoughts?
Actually, I think I just figured out those ones. But this one is really messing with me: http://clinica-americas.com/testimonials.html

Could you please take a look at that? Thanks.
Thanks, it wasn't a ton of help. but it helped a little.
Hi, you've actually got some of the end tags messed up a bit.
On the testimonials, look down around line 118, right around the start of the footer.

Your divs and sections are closed out of sync.

This is what you have:
                    </ul>
                </div>

    </div>
    <!-- Footer Start -->
    </div>

    </section>

    <footer class="center-block" style="width:100%; color:white;">

Open in new window


And it should be like this:
                    </ul>
                </div>

            </section>
        </section>
    </div>
    <!-- Footer Start -->


    <footer class="center-block" style="width:100%; color:white;">

Open in new window

Thanks, I figured it out yesterday, but much appreciated!