Forum Replies Created

Viewing 15 posts - 4,456 through 4,470 (of 8,657 total)
  • Author
    Posts
  • in reply to: Changing Month Background color #66740
    wensolutions
    Keymaster

    Hello @gigigaskell,

    To change the color of the month background color use below given CSS.

    For this go to Admin Panel > Appearance > Customize > Additional CSS and add below given CSS.

    For day:

    .entry-header .entry-meta span span.entry-day {
        background: #ff0;
    }

    For month

    .entry-header .entry-meta span.posted-on {
        background: #319be2;
    }

    You can change the color code as per your requirement.

    Hope this helps.

    Best Regards!!

    in reply to: Color changing system #66739
    wensolutions
    Keymaster

    Hello @donghaino1,

    Changing the font means, do you want to change the font itself or the font size?

    If you meant by the fonts then theme has already provided the option to change the fonts. For this go to Admin Panel > Appearance > Customize > Theme Options > Font Settings.

    Or if you want to increase the font size then please let us know for which you want to increase the font size so that we can help you further.

    Thank you 🙂 .

    Best Regards!!

    in reply to: Theme Options Are Not Visible #66738
    wensolutions
    Keymaster

    Hello, @crazzynetcreations,

    First of all thank you very much for using the pro version for of the theme.

    Actually, the thing is we do not have the demo file bundled within the theme. But there is nothing to worry about i.e. we do have the theme official documentation which you can refer to set up your site as in the demo.

    Documentation link:

    http://themepalace.com/instructions/themes/education-hub-pro/

    Further, if you find any confusion or difficulties while setting up any of the section then, please post them here and we will help you as soon as possible.

    Thank you 🙂 .

    Best Regards!!

    in reply to: How to change the size of featured images? #66594
    wensolutions
    Keymaster

    Hello @dani,

    While we have checked your website, it looks like the fixed image size of 150×150 px. are currently loaded in the featured page section in the front page.

    To resolve the issue please try “Regenerating Thumbnails” on your website for all the theme defined image sizes.

    You can use the following plugin for regeneration of images :

    https://wordpress.org/plugins/regenerate-thumbnails/

    If the issue is not resolved, please write back to so that we can check the issue further.

    Hope this Helps,

    Best Regards !!

    in reply to: Question mark next to dropdown menu #66593
    wensolutions
    Keymaster

    Hello @dani,

    We have inspected your website URL and it seems like the CSS code responsible for the carat icon in the theme style has been corrupt in the child theme style.css file.

    To resolve the issue, please add the following custom CSS to your Admin Dashboard > Appearance > Customize > Additional CSS ( Or in your child theme’s style.css ) :

    #site-navigation ul li.menu-item-has-children > a:before, #site-navigation ul li.page_item_has_children > a:before {
        content: "\f078";
    }

    Hope this Helps,

    Best Regards !!

    in reply to: Hide author in post and pages in Elead theme? #66590
    wensolutions
    Keymaster

    Hello @haivri,

    Glad to know your issue has been resolved.

    If you have any queries/issues further, please feel free to post your queries here and we will happily help you further.

    Best Regards !!

    in reply to: Question mark next to dropdown menu #66585
    wensolutions
    Keymaster

    Hello @dani,

    Please provide us the URL to your website with the issue so that we can check the issue further and provide you with some precise fixes.

    Best Regards !!

    in reply to: Hide author in post and pages in Elead theme? #66584
    wensolutions
    Keymaster

    Hello @haivri,

    You can remove the Author box in the posts single pages by simply going to your Admin Dashboard > Appearance > Customize > Theme Options > Single Post

    You can uncheck the “Enable Author Box” option to remove the author box display in the post single pages.

    Hope this Helps,

    Best Regards !!

    in reply to: Hide author in post and pages in Elead theme? #66573
    wensolutions
    Keymaster

    Hello @haivri,

    As we are currently using the shared hosting on our sites, which provides with dynamic IP, we are unable to provide you with static IP for your website access

    If you are using any security plugins/systems for the blocking purposes, please temporarily disable the services so that we can check the issue.

    Alternatively, you can also provide us with screenshot marking the section/page that you want to hide the author and we will provide you with some fix.

    Best Regards !!

    in reply to: Font color and style issues #66571
    wensolutions
    Keymaster

    Hello,

    You can change the color of the news ticker by adding the following custom CSS in your Admin Dashboard > Appearance > Customize > Additional CSS :

    h2.news-ticker-label:after {
        border-right: 35px solid #191d3d;
    }
    #topbar-widget-wrapper .wrapper, #topbar-widget-wrapper {
        background-color: #191d3d;
    }

    You can replace the color with the color-hex code for your desired color.

    Hope this Helps,

    Best Regards !!

    in reply to: Slider Caption – Secondary Words #66570
    wensolutions
    Keymaster

    Hello @jamest,

    you can add the filter to control the length ( no.of words ) in the featured slider via child theme approach.

    For reference on using child themes, please check the reference here :

    https://codex.wordpress.org/Child_Themes

    You can also automate the child theme generation by using the CHild theme generator plugin.

    After creating and activating your child theme, please paste the following code to your child theme’s functions.php file :

    /**
     * Control Slider caption length.
     */
    function business_field_pro_child_slider_excerpt_length(){
    	return 50;
    }
    add_filter( 'business_field_filter_slider_caption_length', 'business_field_pro_child_slider_excerpt_length');

    You can change the no of words value ( 50 ) as per your requirements.

    Hope this Helps,

    Best Regards !!

    wensolutions
    Keymaster

    Hello,

    To change the header title location from the banner to below breadcrumb section. You will need to make some customization via child theme approach.

    For reference on using child themes, please check the reference here :

    https://codex.wordpress.org/Child_Themes

    You can also automate the child theme generation by using the CHild theme generator plugin.

    After creating and activating your child theme, please paste the following code to your child theme’s functions.php file :

    /**
    	 * Add Custom Header.
    	 *
    	 * @since 1.0.0
    	 */
    	function business_field_add_custom_header() {
    
    		$flag_apply_custom_header = apply_filters( 'business_field_filter_custom_header_status', true );
    		if ( true !== $flag_apply_custom_header ) {
    			return;
    		}
    		$attribute = '';
    		$attribute = apply_filters( 'business_field_filter_custom_header_style_attribute', $attribute );
    		?>
    		<div id="custom-header" <?php echo ( ! empty( $attribute ) ) ? ' style="' . esc_attr( $attribute ) . '" ' : ''; ?>>
    			<div class="container">
    				<?php
    					/**
    					 * Hook - business_field_action_custom_header.
    					 */
    					do_action( 'business_field_action_custom_header' );
    				?>
    			</div><!-- .container -->
    		</div><!-- #custom-header -->
    
    		<?php do_action( 'business_field_action_breadcrumb' ); 
    		
    			$tag = 'h1';
    			if ( is_front_page() ) {
    				$tag = 'h2';
    			}
    			$custom_page_title = apply_filters( 'business_field_filter_custom_page_title', '' );
    			?>
    			<div class="header-content">
    				<div class="header-content-inner">
    					<?php if ( ! empty( $custom_page_title ) ) : ?>
    						<?php echo '<' . $tag . ' class="page-title">'; ?>
    						<?php echo esc_html( $custom_page_title ); ?>
    						<?php echo '</' . $tag . '>'; ?>
    					<?php endif; ?>
    				</div><!-- .header-content-inner -->
    			</div><!-- .header-content -->
    			<?php
    		
    		?>
    
    		<?php
    
    	}

    Additionally, you would need to add the following custom CSS Code in your Admin Dashboard > Appearance > Customize > Additional CSS :

    div#custom-header .header-content {
        visibility: hidden;
    }

    This will generate the desired output for your website.

    Hope this Helps,
    Best Regards !!

    wensolutions
    Keymaster

    Hello @timechart,

    Glad to know your issue has been resolved.

    If you have any queries/issues further, please feel free to post your queries here.

    Best Regards !!

    in reply to: Bigger caption in the slider? #66522
    wensolutions
    Keymaster

    Hello @sofie-siversen,

    When we inspected your site URL, we were unable to find such kind of issue. We did not find any slashes on the slider.

    So please create the issue and let us know.

    Thank you.

    Best Regards!!

    in reply to: New position widget help #66507
    wensolutions
    Keymaster

    Hello @goldvision2010,

    There is no any widget area in the header. The only widget area that is available is sidebar and footer widget areas.

    So as much as we would love to help you with this, we are unable to do so as it requires a higher code customization and falls beyond the support we offer for our products.

    So if you want such feature you can always consider hiring the professional developer so that your theme won’t be affected in any way.

    To hire the developer please refer to below link:
    themepalace.com/hire-a-customizer

    Thank you 🙂 .

    Best Regards!!

Viewing 15 posts - 4,456 through 4,470 (of 8,657 total)