Level9themes
Forum Replies Created
-
Forum: Reviews
In reply to: [Mk] Looks great, super easy to useYou are wellcome. Please report any bugs to help us improve Mk.
Forum: Themes and Templates
In reply to: [Mk] Slider in blog, left sidebar cut shortPlease post a link to your website?
Forum: Themes and Templates
In reply to: [Mk] parse errorThis issue is resolved in version 1.0.9.
Forum: Themes and Templates
In reply to: [Mk] How can I hide the posts from the home page?Yap, 1.0.9. Good luck
Forum: Themes and Templates
In reply to: [Mk] How can I hide the posts from the home page?Hi, please install the newest version.
Forum: Reviews
In reply to: [Mk] parse errorWhat version of WordPress are you running? Mk is using a better media grabber as of version 1.0.9. This newer version is in theme update queue, check back soon for update.
Forum: Themes and Templates
In reply to: [Mk] How can I hide the posts from the home page?I mean theme update queue
Forum: Themes and Templates
In reply to: [Mk] How can I hide the posts from the home page?We have addressed all those issues in the next update on Mk, which is in the theme review queue here at www.remarpro.com. Best regards.
Forum: Themes and Templates
In reply to: [Mk] color schemeYes you can change the color scheme easily using a child theme or upgrading to MK premium version. More details on child theming can be found here. We will be adding more customization options in the next Mk update.
Forum: Themes and Templates
In reply to: [Mk] How can I hide the posts from the home page?Sorry for the late reply. Please read This article
Forum: Themes and Templates
In reply to: [Mk] How To Adjust Slider TimingHi,we are working on a couple of functions that will make it possible to achieve what you want through the theme customizer.
Forum: Reviews
In reply to: [Mk] Responsive great themeWe are glad you found our theme useful, thank you.
Forum: Fixing WordPress
In reply to: Center an iframe on a web pageWhat version of wordpress are you using? Version 3.6 and above natively support video. You can insert a video using shortcode, for example:
[video width="600" height="480" mp4="source.mp4" ogv="source.ogv" webm="source.webm"]
You only need to provide the full urls of your videos into the shortcode paramaters, WordPress will take care of the rest.
Forum: Fixing WordPress
In reply to: Center an iframe on a web pageGenerally you do it the same as with other elements:
margin: 0 auto;
But iframes display inline by default. So if you are going with margin: auto; you will need to adddisplay: block;
as well. Also for auto margins to work an explicit width must be set on the iframe.Add the following code into your stylesheet.
iframe { display: block; width: 800px; height: 400px; margin: 0 auto; border: 0; }
Forum: Themes and Templates
In reply to: [Why Hello There] Changing font-size of nav-menu in headerJust put the following code into your child theme style.css file. Adjust the font size to your liking.
#nav .primary-navigation a{ font-size: 18px!important; }