Title: Pascalvd's Replies - page 2 | WordPress.org

---

# Pascalvd

  [  ](https://wordpress.org/support/users/pascalvd/)

 *   [Profile](https://wordpress.org/support/users/pascalvd/)
 *   [Topics Started](https://wordpress.org/support/users/pascalvd/topics/)
 *   [Replies Created](https://wordpress.org/support/users/pascalvd/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/pascalvd/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/pascalvd/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/pascalvd/engagements/)
 *   [Favorites](https://wordpress.org/support/users/pascalvd/favorites/)

 Search replies:

## Forum Replies Created

Viewing 4 replies - 16 through 19 (of 19 total)

[←](https://wordpress.org/support/users/pascalvd/replies/?output_format=md) [1](https://wordpress.org/support/users/pascalvd/replies/?output_format=md)
2

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Zerif Lite] Change big title font size](https://wordpress.org/support/topic/change-big-title-font-size/)
 *  Thread Starter [Pascalvd](https://wordpress.org/support/users/pascalvd/)
 * (@pascalvd)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/change-big-title-font-size/#post-5914627)
 * Thanks, works perfectly!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Zerif Lite] Removing the Red Line from Pages](https://wordpress.org/support/topic/removing-the-red-line-from-pages/)
 *  [Pascalvd](https://wordpress.org/support/users/pascalvd/)
 * (@pascalvd)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/removing-the-red-line-from-pages/#post-5918959)
 * Hi,
 * I’m not sure but you should probably look for something like this in your css
   file:
 * `.red-border-bottom:before`
 * You can then change to height of the line. Let me know if it works.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Zerif Lite] Zerif Lite child theme](https://wordpress.org/support/topic/zerif-lite-child-theme/)
 *  [Pascalvd](https://wordpress.org/support/users/pascalvd/)
 * (@pascalvd)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/zerif-lite-child-theme/#post-5915141)
 * It broke some of the lay-outs functions once I deleted the [@import](https://wordpress.org/support/users/import/)
   rule so I left it there.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Zerif Lite] Zerif Lite child theme](https://wordpress.org/support/topic/zerif-lite-child-theme/)
 *  [Pascalvd](https://wordpress.org/support/users/pascalvd/)
 * (@pascalvd)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/zerif-lite-child-theme/#post-5915131)
 * Hi!
 * 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 :).

Viewing 4 replies - 16 through 19 (of 19 total)

[←](https://wordpress.org/support/users/pascalvd/replies/?output_format=md) [1](https://wordpress.org/support/users/pascalvd/replies/?output_format=md)
2