Maruti Mohanty
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hiero] Duplicated DateForum: Themes and Templates
In reply to: [Fashionistas] Full Width IndexHi
There can be many ways to do this, but the easiest would be the css way.
To do this add the following css in the theme’s style.css file or use a custom css plugin.
Make sure you are using a child theme. To know more about child theme check the codex or this blog.
.home .site-sidebar { display: none; } .home ..site-content { margin: auto; }Hope it helps!!
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Top Navigation Heightto align top navigation to the right add the following css
#top-navigation .sf-menu { float: right; }Forum: Themes and Templates
In reply to: [Fashionistas] Top Navigation HeightHi C
You can definitely move your changes to a child theme and I would you to do it sooner than later.
You can follow codex or this blog to see how to create a child theme and make it work. It is fairly simple.
create a child theme and move all your changes to the child theme and always keep your wp, themes and plugins up to date.
Forum: Themes and Templates
In reply to: [Hiero] Duplicated DateHi
can you please confirm if you are using the latest version of the theme, cause in a previous version this issue was there.
please check it and let us know.
Also please share a link for us to have a look.
Thanks
Hi
I checked ur site both in chrome and firefox and doesnt see a difference.
please recheck and let us know.
Thanks
Forum: Themes and Templates
In reply to: [Hiero] Change featured image to a strip?Glad it helped 🙂
Forum: Themes and Templates
In reply to: [Fashionistas] Top Navigation HeightHi
First of all, your customization to the theme is beautiful. Great work.
To make the change, add the following css in your theme’s style.css file
#top-navigation { height: 40px; }I assume you are using child theme for all your customizations.
Thanks
Forum: Themes and Templates
In reply to: [Hiero] Multilevel menu not usable on mobileHi
can you share a link to your site?
Forum: Themes and Templates
In reply to: [Fashionistas] Child Theme Changes Appearance and MobileHi MauroBat
I looked into your site thezephyr.co in my android phone and it looks good to me
Forum: Themes and Templates
In reply to: [Fashionistas] Misplaced sidebar widgetsHi
can you check with adding a priority to the action hook
Change it from
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );to
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles', 99 );Forum: Themes and Templates
In reply to: [Fashionistas] Change Continue Reading – How to?Ok sure 😉
Forum: Themes and Templates
In reply to: [Hiero] Rename Continue ReadingHi
can you check if you are adding the below code at the bottom of the functions.php file
function heiro_excerpt_more( $more ) { return ' <a href="'. esc_url( get_permalink() ) . '" class="more-link">' . __( 'Read More <span class="meta-nav">→</span>', 'athemes' ) . '</a>'; } add_filter( 'excerpt_more', 'heiro_excerpt_more' );Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Embedded YouTube Videos Not working on MobileHi both,
can you guys do change to a different theme, for eg twentyfifteen and check if the issue still persists. if yes then you guys need to check something else may be a plugin or something.
Also add link to your sites and the set of plugins activated.
Thanks
Hi J
This is how WordPress works.
To know more look go through the below links
http://premium.wpmudev.org/blog/animated-gif-as-featured-image-in-wordpress/
http://www.kriesi.at/support/topic/animated-gif-in-featured-images-slider/Thanks