This commit is contained in:
Willi Junga 2020-12-23 12:50:27 +01:00
parent 602b1014dd
commit 47136fb138
Signed by: JunWi
GPG key ID: 16CD94732DE08DA5
4 changed files with 23 additions and 7 deletions

View file

@ -9,13 +9,22 @@ Instructions:
1. Select branch from: https://git.verdigado.com/NB-Public/jkb-childtheme/branches/
2. Download branch as ZIP
3. Unzip rename contained folder to `jkb-childtheme-DOMAIN` without `.TDL`
3. Unzip rename contained folder to `jkb-childtheme-isabell-hiekel` without `.TDL`
4. zip that renamed folder again
5. Upload theme to wordpress.
## Version Changes
### V0.2
_We, 23.12.2020 12:41_
* changed function.php to incluse costume style.css
* added style.css to inlcude new class homelogo
### V0.1
_Fr, 18.12.2020 08:41_

View file

@ -1,6 +1,11 @@
<?php
add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles' );
function enqueue_parent_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
}
// The parent-theme adds the style with a priority of 999. In order
// for us to be able to override styles from the parent-theme we have to
// render our styles even later
add_action( 'wp_enqueue_scripts', 'enqueue_isabell-hiekel_css', 1000);
function enqueue_isabell-hiekel_css() {
wp_enqueue_style( 'parent-style', get_stylesheet_directory_uri() . '/lib/css/style_isabell-hiekel.css');
}
?>

View file

@ -0,0 +1,3 @@
@charset "UTF-8";
/*Home*/
.nav-main .homelogo {float: left;padding-left: 3.2em;background: url(../images/logo_small.png) 0 0.5em no-repeat transparent;background-size: auto 72%;}

View file

@ -5,10 +5,9 @@ Description: Child Theme fuer Aufwändiges Wordpress-Theme für den EInsatz von
Author: Willi Junga
Author URI: https://verdigado.com
Template: Joseph-knows-best-master
Version: 0.1
Version: 0.2
Text Domain: jkb-child
Tags: child, childtheme, child-theme, two-columns, green, right-sidebar, fluid-layout, custom-background, custom-header, custom-menu, custom-menu, theme-options, featured-images, storytelling
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/