Level9themes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Smartr] Slider imagesHi, 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
In reply to: [Smartr] Cta and Blog Sections doesn't workYou 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
In reply to: [Mk] Menu items do not scrollPlease check out the latest version
Forum: Themes and Templates
In reply to: [Mk] Use Featured Image on pages headerThe 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
In reply to: [Mk] Change height of header image?This should work,
.mk-single-top { height: 180px!important; padding: 30px 0!important; }
Best regards
Forum: Themes and Templates
In reply to: [Mk] Change height of header image?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
In reply to: [Mk] move main caption down on the homepage sliderForum: Themes and Templates
In reply to: [Mk] move main caption down on the homepage sliderEvery 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
In reply to: [Mk] Title under the LogoIf you have some coding knowledge you can easily achieve that by overriding
mk_navigation_sidebar
withchildtheme_override_mk_navigation_sidebar
. just copy the content of the parent function intochildtheme_override_mk_navigation_sidebar
and add<?php bloginfo('name'); ?>
abovesite-desc div
.Forum: Themes and Templates
In reply to: [Mk] Title under the LogoYou mean site description?
Forum: Themes and Templates
In reply to: [Mk] why does text content appears also on the top of the page?This issue has been resolved
Forum: Themes and Templates
In reply to: [Mk] Removing slider from posts pageYou are wellcome.
Forum: Themes and Templates
In reply to: [Mk] Removing slider from posts pageSorry, I mean update review queue here at www.remarpro.com. Your installation of wordpress cannot detect the update as it isnt live at this time. There you go!
Forum: Themes and Templates
In reply to: [Mk] Removing slider from posts pageHi 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
In reply to: [Mk] why does text content appears also on the top of the page?Open lnt-misc.php (LNT-framework/lnt-misc.php), search and find
echo $excerpt;
and change it toreturn $excerpt;
, save your changes and reload your site.The issue will be fixed in the next update
Thank you