Pascalvd
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Zerif Lite] Change big title font sizeThanks, works perfectly!
Forum: Themes and Templates
In reply to: [Zerif Lite] Removing the Red Line from PagesHi,
I’m not sure but you should probably look for something like this in your css file:
.red-border-bottom:beforeYou can then change to height of the line. Let me know if it works.
Forum: Themes and Templates
In reply to: [Zerif Lite] Zerif Lite child themeIt broke some of the lay-outs functions once I deleted the @import rule so I left it there.
Forum: Themes and Templates
In reply to: [Zerif Lite] Zerif Lite child themeHi!
I just recently managed to create a child theme for Zerif Lite. You should create a style.css and a functions.php file like you have already done. After you’ve created those files you should paste the following code:
style.css
/* Theme Name: Zerif Lite Child Theme URI: https://themeisle.com/themes/zerif-lite/ Description: Zerif Lite Child Theme Author: ThemeIsle Author URI: https://themeisle.com Template: zerif-lite Version: 0.1 */ @import url("../zerif-lite/style.css");functions.php
<?php add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); function theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); }This is what has worked for me. Let me know if it solved your problem :).