Trying to get the footer widget to display on website

Hello, I’m trying to get the footer widgets to display on my website but I can’t seem to see the footers.

Also what would be the css to remove line shadow on the footer line as well as to change the background color to grey?

Thank you so much.

Hi @ianlamza,

You have added this code in the Global CSS that is stopping the Footer Widget Area to display:


.x-colophon.top {
    position: absolute;
    width: 100%;
}

Kindly get rid of the code and the footer should display as normal.

Please try this code:

.x-colophon.top, .x-colophon.bottom {
    box-shadow: none;
    border: 0;
    background-color: gray;
}

Hope this helps.

1 Like

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