Hi @Carina,
1. Removing blog posts from front page.
For this change you have to create a child theme. You can find more details on creating child theme HERE. Then in child theme create a file index.php
and add the following codes and save it.
<?php
/**
* The main template file.
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* E.g., it puts together the home page when no home.php file exists.
*
* @package Catch Themes
* @subpackage Catch Responsive
* @since Catch Responsive 1.0
*/
get_header();
get_footer(); ?>
2. Changing Home to another language.
Go to Dashboard=> Appearance=> Menus” and change Home label to another language home text manually.
3. Changing footer color to black with white text.
Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.
#site-generator {
background-color: none repeat scroll 0 0 #000;
color: #fff;
}
Regards,
Mahesh