Title: Responsive
Last modified: August 10, 2021

---

# Responsive

 *  [Ilene Johnson](https://wordpress.org/support/users/ilenejohnson/)
 * (@ilenejohnson)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/responsive-422/)
 * 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](https://wordpress.org/support/users/nravota12/)
 * (@nravota12)
 * [4 years, 9 months ago](https://wordpress.org/support/topic/responsive-422/#post-14775631)
 * [@ilenejohnson](https://wordpress.org/support/users/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 4 years, 9 months ago by [Atanas Yonkov](https://wordpress.org/support/users/nravota12/).
 *  Theme Author [Atanas Yonkov](https://wordpress.org/support/users/nravota12/)
 * (@nravota12)
 * [4 years, 9 months ago](https://wordpress.org/support/topic/responsive-422/#post-14777574)
 * 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.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/pliska/0.3.9/screenshot.jpg)
 * Pliska
 * [Support Threads](https://wordpress.org/support/theme/pliska/)
 * [Active Topics](https://wordpress.org/support/theme/pliska/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/pliska/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/pliska/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [Atanas Yonkov](https://wordpress.org/support/users/nravota12/)
 * Last activity: [4 years, 9 months ago](https://wordpress.org/support/topic/responsive-422/#post-14777574)
 * Status: not resolved