• I need to change the break point for responsive views. you have it at 40em. Normally I would adjust this in my child theme, but you have lots CSS hardcoded in your php files, specifically custom-header.php.

    In the next version, can you remove all the hard coded items?

    I’m looking for the best way to override this.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Atanas Yonkov

    (@nravota12)

    @ilenejohnson , thank you for the feedback, I will provide a way to deregister these styles in the next theme update and get back to you.

    • This reply was modified 3 years, 3 months ago by Atanas Yonkov.
    Theme Author Atanas Yonkov

    (@nravota12)

    Since version 0.2.4, you can override the functions in custom-header.php by duplicating the function name from the parent theme into your child theme and adding your custom functionality there:

    function pliska_header_image_css() {
       //add your custom code here
    }

    Your child theme will then prioritize the new function instead of the parent theme’s function with the same name. Pliska theme is now fully prepared for this behavior due to the added checks in custom-header.php whether the functions exist:

    if ( ! function_exists( 'pliska_custom_header_setup' ) ) {
    	function pliska_custom_header_setup() {
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Responsive’ is closed to new replies.