Title: Level9themes's Replies | WordPress.org

---

# Level9themes

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 64 total)

1 [2](https://wordpress.org/support/users/level9themes/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/level9themes/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/level9themes/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/level9themes/replies/page/5/?output_format=md)
[→](https://wordpress.org/support/users/level9themes/replies/page/2/?output_format=md)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smartr] Slider images](https://wordpress.org/support/topic/slider-images-25/)
 *  Theme Author [Level9themes](https://wordpress.org/support/users/level9themes/)
 * (@level9themes)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/slider-images-25/#post-7571975)
 * Hi, please make sure that the posts in the category that the slider is fetching
   posts from have featured images and the images are big enough.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smartr] Cta and Blog Sections doesn't work](https://wordpress.org/support/topic/cta-and-blog-sections-doesnt-work/)
 *  Theme Author [Level9themes](https://wordpress.org/support/users/level9themes/)
 * (@level9themes)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/cta-and-blog-sections-doesnt-work/#post-7601525)
 * You do not need to purchase the full version to show CTA and blog sections. One
   thing though, the sections work only when using the custom page template provided.
   What is your homepage and blog page setup? Are you using a static front page?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mk] Menu items do not scroll](https://wordpress.org/support/topic/menu-items-do-not-scroll/)
 *  Theme Author [Level9themes](https://wordpress.org/support/users/level9themes/)
 * (@level9themes)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/menu-items-do-not-scroll/#post-7124099)
 * Please check out the latest version
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mk] Use Featured Image on pages header](https://wordpress.org/support/topic/use-featured-image-on-pages-header/)
 *  Theme Author [Level9themes](https://wordpress.org/support/users/level9themes/)
 * (@level9themes)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/use-featured-image-on-pages-header/#post-6717409)
 * The theme displays your custom header image if your featured image is smaller
   than than custom header default width, which is 1280px.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mk] Change height of header image?](https://wordpress.org/support/topic/change-height-of-header-image-2/)
 *  Theme Author [Level9themes](https://wordpress.org/support/users/level9themes/)
 * (@level9themes)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/change-height-of-header-image-2/#post-6683758)
 * This should work,
 *     ```
       .mk-single-top {
         height: 180px!important;
         padding: 30px 0!important;
        }
       ```
   
 * Best regards
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mk] Change height of header image?](https://wordpress.org/support/topic/change-height-of-header-image-2/)
 *  Theme Author [Level9themes](https://wordpress.org/support/users/level9themes/)
 * (@level9themes)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/change-height-of-header-image-2/#post-6683755)
 * You can target a specific page by using `is_page()` conditional tag. For example:
 *     ```
       if(is_page( 42 )):
       // When Page 42 (page with ID #42) is being displayed.
          function childtheme_override_lnt_custom_header_feature(){
          // do nothing
         }
       endif;
       ```
   
 * or
 *     ```
       function childtheme_override_lnt_custom_header_feature(){
          // do nothing
         }
       ```
   
 * to remove the header in all pages.
 * You can target the size of the header with the following styles. Adjust padding
   and height to suit your design
 *     ```
       .mk-single-top {
           height: 280px;
           padding: 80px 0 0 0;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mk] move main caption down on the homepage slider](https://wordpress.org/support/topic/move-main-caption-down-on-the-homepage-slider/)
 *  Theme Author [Level9themes](https://wordpress.org/support/users/level9themes/)
 * (@level9themes)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/move-main-caption-down-on-the-homepage-slider/#post-6699542)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mk] move main caption down on the homepage slider](https://wordpress.org/support/topic/move-main-caption-down-on-the-homepage-slider/)
 *  Theme Author [Level9themes](https://wordpress.org/support/users/level9themes/)
 * (@level9themes)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/move-main-caption-down-on-the-homepage-slider/#post-6699539)
 * Every slide has a unique class, for example `mk-slide-1, mk-slide-2` etc.
    For
   example, to increase top margin for slide #1 you can drop this into your css.
   Adjust the percentage to suit your design.
 *     ```
       #slides li.mk-slide-1 article {
           top: 60%;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mk] Title under the Logo](https://wordpress.org/support/topic/title-under-the-logo/)
 *  Theme Author [Level9themes](https://wordpress.org/support/users/level9themes/)
 * (@level9themes)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/title-under-the-logo/#post-6679256)
 * If you have some coding knowledge you can easily achieve that by overriding `
   mk_navigation_sidebar` with `childtheme_override_mk_navigation_sidebar`. just
   copy the content of the parent function into `childtheme_override_mk_navigation_sidebar`
   and add `<?php bloginfo('name'); ?>` above `site-desc div`.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mk] Title under the Logo](https://wordpress.org/support/topic/title-under-the-logo/)
 *  Theme Author [Level9themes](https://wordpress.org/support/users/level9themes/)
 * (@level9themes)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/title-under-the-logo/#post-6679212)
 * You mean site description?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mk] why does text content appears also on the top of the page?](https://wordpress.org/support/topic/why-does-text-content-appears-also-on-the-top-of-the-page/)
 *  Theme Author [Level9themes](https://wordpress.org/support/users/level9themes/)
 * (@level9themes)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/why-does-text-content-appears-also-on-the-top-of-the-page/#post-6640834)
 * This issue has been resolved
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mk] Removing slider from posts page](https://wordpress.org/support/topic/removing-slider-from-posts-page/)
 *  Theme Author [Level9themes](https://wordpress.org/support/users/level9themes/)
 * (@level9themes)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/removing-slider-from-posts-page/#post-6657269)
 * You are wellcome.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mk] Removing slider from posts page](https://wordpress.org/support/topic/removing-slider-from-posts-page/)
 *  Theme Author [Level9themes](https://wordpress.org/support/users/level9themes/)
 * (@level9themes)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/removing-slider-from-posts-page/#post-6657235)
 * Sorry, I mean update review queue here at WordPress.org. Your installation of
   wordpress cannot detect the update as it isnt live at this time. [There you go!](https://themes.trac.wordpress.org/ticket/27895)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mk] Removing slider from posts page](https://wordpress.org/support/topic/removing-slider-from-posts-page/)
 *  Theme Author [Level9themes](https://wordpress.org/support/users/level9themes/)
 * (@level9themes)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/removing-slider-from-posts-page/#post-6657233)
 * Hi Rob, Please update to the latest version, it is on the theme update queue 
   as I write this, the new version has an option to turn off the slider on your
   posts page.
 * Best regards
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mk] why does text content appears also on the top of the page?](https://wordpress.org/support/topic/why-does-text-content-appears-also-on-the-top-of-the-page/)
 *  Theme Author [Level9themes](https://wordpress.org/support/users/level9themes/)
 * (@level9themes)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/why-does-text-content-appears-also-on-the-top-of-the-page/#post-6640787)
 * Open lnt-misc.php (LNT-framework/lnt-misc.php), search and find `echo $excerpt;`
   and change it to `return $excerpt;`, save your changes and reload your site.
 * The issue will be fixed in the next update
 * Thank you

Viewing 15 replies - 1 through 15 (of 64 total)

1 [2](https://wordpress.org/support/users/level9themes/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/level9themes/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/level9themes/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/level9themes/replies/page/5/?output_format=md)
[→](https://wordpress.org/support/users/level9themes/replies/page/2/?output_format=md)