Falguni Desai
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Nisarg] Not possible to select a custom 'Accent Color'Hello @asaintpo and @geekatrix,
I have updated the theme. Now you can set the accent color to any value and save permanently. Please download the new version. Hope you will like the new feature.
Forum: Themes and Templates
In reply to: [Nisarg] changes made customizer not permanentHello SvenAngenent,
I have updated the theme. Now you can save the changes for accent color. Please check the update. Hope you will find it useful.
Forum: Reviews
In reply to: [Nisarg] Pretty and intuitiveThank you nmargono.
Forum: Themes and Templates
In reply to: [Nisarg] Not possible to select a custom 'Accent Color'Hello shivanishivu963,
What you have mentioned in your message is not the case with this theme. The issue is the coding is not done in the theme to support this feature.
Very soon i will update the theme with the support for setting accent color to any value free of cost.Forum: Themes and Templates
In reply to: [Nisarg] Not possible to select a custom 'Accent Color'Hello asaintpo,
I have almost worked out a way to set accent color to any color. Little bit user interface is left. Very soon update my theme.
Falguni
Forum: Themes and Templates
In reply to: [Nisarg] Not possible to select a custom 'Accent Color'Hello @asaintpo and @geekatrix,
As per my coding, you can select one color from predefined seven colors displayed in dropdown box. Other than those seven colors you can not set any other color as accent color. I think use of color picker to show those sample colors is my wrong decision as it is misleading the users. In next version of the theme i will definitely solve the problem Sorry for the inconvenience.
Forum: Themes and Templates
In reply to: [Nisarg] Widgets are displayed although "inactive"Hello geekatrix,
Michael has answered your question. The three widgets are displayed by default if you don’t choose to display your widgets. If you don’t want them at all then go to sidebar.php file and remove the below code:
<?php if ( ! dynamic_sidebar( 'sidebar-1' ) ) : ?> <aside id="search" class="widget widget_search"> <?php get_search_form(); ?> </aside> <aside id="archives" class="widget"> <h3 class="widget-title"><?php _e( 'Archives', 'nisarg' ); ?></h3> <ul> <?php wp_get_archives( array( 'type' => 'monthly' ) ); ?> </ul> </aside> <aside id="meta" class="widget"> <h3 class="widget-title"><?php _e( 'Meta', 'nisarg' ); ?></h3> <ul> <?php wp_register(); ?> <li><?php wp_loginout(); ?></li> <?php wp_meta(); ?> </ul> </aside> <?php endif; // end sidebar widget area ?>
Forum: Themes and Templates
In reply to: [Nisarg] changes made customizer not permanentI got your point now. You must be trying to set accent color to any color. But as per coding, you can set only predefined 7 colors as accent colors. Other then that it will not accept any color. Can’t you even save those seven colors?
Forum: Themes and Templates
In reply to: [Nisarg] changes made customizer not permanentI never had this problem in my testing. Still if you have it, you can find the code in customizer.php and custom-header.php.
Forum: Themes and Templates
In reply to: [Nisarg] expand Side barNot possible to change the width of sidebar using CSS. You have change php files. Find the class of the add and in that class try to set the maximum width css property of the advertise box to 100%.
Forum: Reviews
In reply to: [Nisarg] Nisarg ThemeThanks @svenangenent. The changes made in customizer remains permanent. Are u saving the changes by clicking on save and publish button?
Forum: Reviews
In reply to: [Nisarg] Love the simplicity and beauty!!!Thank you very much John for using my theme. Regarding the problem you are facing with hover title displaying on menu item, you have to make little change in the code.
To remove the title attribute from menu item, open a file navwalker.php from inc folder and comment line no 79 in this file. The line no. 79 should look like this after changes:
//$atts['title'] = ! empty( $item->attr_title ) ? $item->attr_title : $item->title;
Hope this changes will solve your problem.
Forum: Themes and Templates
In reply to: [Nisarg] top navigation issueHi @floortjebvd,
Sorry for the let reply.
Regarding your question, currently the theme supports only two levels in the menu. I will add more menu levels support in the next version of the theme.
It is not possible to change by just changing css.Forum: Themes and Templates
In reply to: [Nisarg] Nisarg Blog PostsHi @mockerbird,
Sorry for the late reply. You can see blog post entirely by clicking on the blog post link/read more link. But if you want to show the blog post entirely on the post listing page, then you have to make changes in the code. Open content-*.php and remove the following if condition from all content-*.php.
<?php if ( is_search() || is_home() || is_archive() || is_author()) : // Only display Excerpts for Search ?> <div class="entry-summary"> <?php the_excerpt(); ?> </div><!-- .entry-summary -->
Only keep the code in the else part.Final code to keep is:
<div class="entry-content"> <?php the_content(); ?> <?php wp_link_pages( array( 'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'nisarg' ), 'after' => '</div>', ) ); ?> </div><!-- .entry-content -->
To change font size make changes in the style.css file in the following area:
body,
button,
input,
select,
textarea {
color: #424242;
font-size: keep font size whatever you want
font-weight: 400;
font-family: ‘Source Sans Pro’, sans-serif;
}Forum: Themes and Templates
In reply to: [Nisarg] changes made customizer not permanentHello @svenangenent,
The color changes made in customizer should remain permanent. After making changes do you save changes by clicking on the save and publish button in customizer?
Regarding height of the header, if you are setting header image, it can be of any height. But if you are not setting header image and setting header to plane background color, height can not be changed.
Hope this answer will help you.