Nr of widgets in the Footer

Hey guys
I hope you are well.
I have changed the footer setting in the theme options to 1 widget only but when I go in the dasboard>widgets I still see the 4 options. like 4 spaces. and in fact if I insert one widget it takes only 1/4 of the entire space.
What I would like to do is to have one only widget for the entire space in the footer to insert a raw text to embed a google map.

Do you think this is possible to make?
screen shot attached

thanks a lot
cheers
isabella

Hi Isabella,

It looks like there are 4 spaces but I checked the code using google chrome inspect element and can see that there is only one widget.

I went ahead and set the iframe width to 100% so it will take up the entire width of the widget.

eg.

<iframe src="https://www.google.com/maps/d/embed?mid=1CQtcq8jP_usVK6wuC2RkXrt4NTg" style="width:100%;height:400px;"></iframe>

In case you would like it to take up the entire space of your footer widget, you can add the code below in Theme Options > CSS

body .x-colophon.top {
   padding:0;
}

body .x-container.max.width {
    width:100%;
    max-width:100%;
}

Hope that helps

Hello Paul, thank you so much that’s fine. In case I want to change the map with something else, I just change it in the widget and it will still take the entire space?

Also is it possible to set the title in the middle as well?

thanks a lot
cheers

Hi Isabella,

That is correct. To center the title, please try:

.x-colophon .widget_text .h-widget {
    text-align: center;
}

Hope this helps.

it works! thanks :slight_smile:

You’re most welcome. :slight_smile:

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