• Hi guys,

    I created a childtheme and managed to import my theme customizations. However for some reason the font-size for all texts (navigation, headlines, p,..) is extremly small. It’s still the same css settings as for the original version but it looks extremely “zoomed out”.

    My child theme folder only consists out of functions.php with

    <?php 
    	 add_action( 'wp_enqueue_scripts', 'spicepresschildtheme_enqueue_styles' );
    	 function spicepresschildtheme_enqueue_styles() { 
     		  wp_enqueue_style( 'spicepresschildtheme-style', get_template_directory_uri() . '/style.css' ); 
     		  } 
     ?>

    and an empty style.css.

    Any advice how to solve that?

Viewing 2 replies - 1 through 2 (of 2 total)
  • xoptimus

    (@spicethemesoptimus)

    Hi findingitontheway,

    Thanks for contacting us,

    You can use the following plugin to create a child theme: https://www.ads-software.com/plugins/child-theme-configurator/

    Thanks

    Thread Starter findingitontheway

    (@findingitontheway)

    Hi @spicethemesoptimus sorry for my late response.

    I tried it now and it was working okay but I am missing the connection to spicebox to have the slider and feature options on home (there is only the the news section available in my customizer.

    The functions.php of the child theme looks like this:

    <?php
    // Exit if accessed directly
    if ( !defined( 'ABSPATH' ) ) exit;
    
    // BEGIN ENQUEUE PARENT ACTION
    // AUTO GENERATED - Do not modify or remove comment markers above or below:
    
    if ( !function_exists( 'chld_thm_cfg_parent_css' ) ):
        function chld_thm_cfg_parent_css() {
            wp_enqueue_style( 'chld_thm_cfg_parent', trailingslashit( get_template_directory_uri() ) . 'style.css', array( 'bootstrap' ) );
        }
    endif;
    add_action( 'wp_enqueue_scripts', 'chld_thm_cfg_parent_css', 10 );
    
    // END ENQUEUE PARENT ACTION
    

    Any advice on how to enable SpiceBox?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Font size in child theme is way smaller than the original one’ is closed to new replies.