Level9themes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Mk] Slider onlyThank you. Create a new blank page, give it a name, for example ‘Home’, remember to select
Page Wideunder template select drop-down. Go to reading settings and in the drop down menu for Front Page select “Home. Save your settings and that’s it.Forum: Themes and Templates
In reply to: [Mk] How to remove creditPlease use the theme customizer&
Forum: Themes and Templates
In reply to: [Mk] How To Adjust Slider TimingBest regards
Forum: Themes and Templates
In reply to: [Mk] How to change individual page colorEvery page has a unique body class, use that plus
#mk-page-wrapperto build your stylesFor example:
body.page-id-20 #mk-page-wrapper{ background: #232323; color: #fff; }Forum: Themes and Templates
In reply to: [Mk] color schemeBest regards
Forum: Themes and Templates
In reply to: [Mk] Slider in blog, left sidebar cut shortOr a snapshot
Forum: Themes and Templates
In reply to: [Mk] Width of Header ImageAdd this into your child theme function.php
function my_setup(){ $defaults =array( 'width' => 1920, 'height' => 1080, ); add_theme_support('custom_header',$defaults); } add_action('after_setup_theme','my_setup');Forum: Themes and Templates
In reply to: [Mk] Adding extra slider imagesBest regards
Forum: Themes and Templates
In reply to: [Mk] Remove slider buttonTo align the slide content to the left, apply the following styles
#slides article{ text-align:left!important; padding-left: 40px!important; }You can hide the buttons using css
#slides article a.btn{ display: none!important; }Forum: Themes and Templates
In reply to: [Mk] With Static Front Page, Blog Posts issueBest regards
Forum: Themes and Templates
In reply to: [Mk] Sidebar colorYou can change tha by changing the background properties of both
bodyand thesidebar.body{ } .sidebar{}If you want to change the color of your menu items
.sidebar ul li a{ }Thanks for that, will make some updates on that.
Forum: Themes and Templates
In reply to: [Mk] True colours for header and homepage images?Put this somewhere in your stylesheet
.slides-container li:before{ background: none!important; }Or you may change the mask color and opacity using the following styles. Change the color and opacity to your liking.
.slides-container li:before{ background: rgba(0,0,0,.5)!important; }Best regards
Forum: Themes and Templates
In reply to: [Mk] With Static Front Page, Blog Posts issueThe short header is specially designed for singular pages. You can use
is_home()conditional tag to check if the current page being displayed is the posts index page, then remove the action that hooks the slider tomk_page_wrapper_before()and hook your custom header. Alternatively, you can achieve what you want in your child theme like this.function childtheme_override_mk_slider_template(){ if(is_home()): // paste your custom header content here else: // paste the content of 'mk_ slider_ template' function here endif: }Forum: Themes and Templates
In reply to: [Mk] Adding extra slider imagesYap, Mk is child ‘themeable’. You can put as many slides as you wish.