patches-isabell-hiekel.de #5

Closed
JunWi wants to merge 4 commits from patches-isabell-hiekel.de into main
6 changed files with 30 additions and 12 deletions

View file

@ -1,7 +1,7 @@
"Joseph-Knows-Best" - Wordpress Theme für DOMAIN.TDL
"Joseph-Knows-Best" - Wordpress Theme für isabell-hiekel.de
=======================================================
Credits to: https://chatbegruenung.de/direct/`NICKNAME`
Credits to: https://chatbegruenung.de/direct/jungawil
For feedback and _voluntary_ advice: https://chatbegruenung.de/channel/wordpress
@ -9,13 +9,24 @@ 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.0
### V0.2
_Do, 35.05.1312 01:23_
_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_
* Added logo.png & logo_small.png

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%;}

BIN
lib/images/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

BIN
lib/images/logo_small.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

View file

@ -1,14 +1,13 @@
/*
Theme Name: Joseph knows best Child
Theme Name: Joseph knows best Child - für isabell-hiekel.de
Theme URI: https://git.verdigado.com/NB-Public/jkb-childtheme
Description: Child Theme fuer Aufwändiges Wordpress-Theme für den EInsatz von größeren Websites, z.B: bei Landesverbänden.
Author: Willi Junga
Author URI: https://verdigado.com
Template: Joseph-knows-best-master
Version: 0.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
*/