Footer Widget Section & Commentary Submit button

Hi,

1.) I added a Widget Area to my footer and it has a grey background. I would like to change the background color to black and the font color to white. Is there any way to do that? I can’t find it anywhere in the settings. I haven’t published the page yet so I can’t show you an example.

2.) I added commentaries to my page and under the field where you can write the comment is a button that says “submit”. I’m trying to keep everything on the website in German though. How can I change the text in the button or the language?

Thanks very much in advance,
Dennis

Hi Dennis,

You have to setup and activate the child theme first: https://theme.co/apex/forum/t/setup-how-to-setup-child-themes/57.

1.Please add this custom CSS under Theme Options > CSS:

footer.x-colophon.top {
    background: #000;
}
footer.x-colophon.top ul li a,
footer.x-colophon.top .h-widget,
footer.x-colophon.top .textwidget {
    color: #fff;
    text-shadow: none;
}

2.Please add the following code under functions.php file locates in your child theme:

add_filter('gettext', 'translate_texts');
function translate_texts($translated) { 
	$translated = str_ireplace('Submit', 'Your text', $translated);
	return $translated; 
}

Hope it helps :slight_smile:

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