Footer missing

Hi Themeco, this is a reply for @iam and @Nabeel related to my issue with footer not showing the widgets.

There is just this white blank space and i don’t know what to do.

Please advise how to i make it shown and how to change background colours
This is for site remdr.online . I have the customizer set for 3 footer widgets, this widgets itself are text based but as you’ll see on the site, there is just this blank space in the footer and not content.

… there seems to be only one widget visible (contact form) but each field’s description seems to show up when I hover BUT … it seems to show as hyperlink ? This is weird… it’s meant to be just field name …

I was asked to provide admin login credentials in a new thread within a secure note…I hope I did this right… my apologies if not… I’m still getting my head around the new forum

Hey there,

The top footer section get its background from the the navbar background option of Ethos and the bottom footer section gets the color from the topbar option.

Ethos is a magazine-centric design that works great for blogs, news sites, or anything else that is content heavy with a focus on information. Customize the appearance of various items below and take note that some of these accent colors will be used for additional elements. For example, the “Navbar Background Color” option will also update the appearance of the widget titles in your sidebar.

Thanks.

Thanks that is all clear now… but other thing is the footer content (text) all of it appears to be in white… how do I customize the font colour for both Top Footer Section as well as Bottom Footer section?

Secondly… and this one is more of a X bug… why is all the content shown as hyperlink? I’ve not set it to be (except for menu links and social icons off course)… Can you please have a look why is this happening?

Thirdly is there a way to set a different color for top footer section background independently please?
Thank you guys

Love your work :slight_smile:

Hi,

It was your js script code in one of your footer widgets that was causing the hyperlink issue.

I went ahead and fix it.

To change the color of the text, you can add this in X > Launch > Options > CSS

.x-colophon.top,
.x-colophon.top p,
.x-colophon.top .widget a {
   color:#000;
   text-decoration:none;
}

.x-colophon.top .widget a:hover {
   color:#000;
   text-decoration:none;
}

Hope that helps

Thanks Paul, you are the man! I really appreciated that. I tried to change to font using the CSS Code , it works but the headline text of each footer widget area is still white … can you help please? (see screenshot I’ve uploaded).

Also I had other question that was missed :slight_smile: … about the top footer section … I’d like that to be different colour of the background independently of the header … possible?

Hi There,

For the headline text, please use this custom CSS:

footer.x-colophon.top .h-widget {
   color: red; /*Change to your preferred color*/
}

To change top footer section background color, use this:

footer.x-colophon.top {
    background-color: green;  /*Change to your preferred background color*/
}

Hope this helps.

1 Like