Forum Replies Created

Viewing 20 posts - 10,821 through 10,840 (of 12,034 total)
  • Author
    Posts
  • in reply to: Logo too small #149193
    Skandha
    Participant

    @arekm: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .header-modern .site-branding {
    	padding:20px 65px;
    }

    You can adjust the padding according to your requirement.

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Widened Jetpack gallery #149184
    Skandha
    Participant

    @lmphotos: You seem to have disabled right click on your site. Please enable it so that I can look into the issue.

    Kind Regards,
    Skandha

    in reply to: RSS feed issues – functions.php file #149181
    Skandha
    Participant

    @pmagsco: Please post in your site URL!

    Kind Regards,
    Skandha

    in reply to: Logo too small #149180
    Skandha
    Participant

    @arekm: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .custom-logo-link {
    	max-width:300px;
    }

    Also, remove the following Code from the Additional CSS so that the Logo sits perfectly on the center.
    `position:relative;
    left:-50px;`

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Blog dates? #149138
    Skandha
    Participant

    @tg: When you make edits to your core theme files to make some changes in your site, this changes will be lost when you update the theme to the new version. So in order to retain the customization, first a child theme is created and then customizations are done. To know more about child theme follow this link.

    Also Did the code I provided you work out?

    Kind Regards,
    Skandha

    in reply to: Blog dates? #149135
    Skandha
    Participant

    @tg: First you will need to create a child theme. If you do not know how to create a child theme you can use Generate Child Theme Plugin.

    Then Go to => Child Theme Folder => functions.php file and paste the following Code.

    if ( ! function_exists( 'simplecatch_loop' ) ) :
    	/**
    	 * Display the page/post loop part
    	 * @since Simple Catch 1.3.2
    	 */
    	function simplecatch_loop() {
    
    		if ( is_page() ): ?>
    
    			<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    				<header class="entry-header">
    					<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
    				</header><!-- .entry-header -->
    	            <div class="entry-content clearfix">
    					<?php the_content();
    	                // copy this <!--nextpage--> and paste at the post content where you want to break the page
    	                 wp_link_pages(array(
    	                        'before'			=> '<div class="pagination">Pages: ',
    	                        'after' 			=> '</div>',
    	                        'link_before' 		=> '<span>',
    	                        'link_after'       	=> '</span>',
    	                        'pagelink' 			=> '%',
    	                        'echo' 				=> 1
    	                ) ); ?>
    	           	</div><!-- .entry-content -->
    			</article><!-- #post-## -->
    
    	    <?php elseif ( is_single() ): ?>
    
    			<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    	        	<header class="entry-header">
    	                <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
    	                <div class="entry-meta">
    	                    <ul class="clearfix">
    	                        <li class="no-padding-left author vcard"><a class="url fn n" href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" title="<?php echo esc_attr(get_the_author_meta( 'display_name' ) ); ?>" rel="author"><?php _e( 'By', 'simple-catch' ); ?>&nbsp;<?php the_author_meta( 'display_name' );?></a></li>
    	                        <li class="entry-date updated"><?php $simplecatch_date_format = get_option( 'date_format' ); the_time( $simplecatch_date_format ); ?></li>
    	                        <li><?php comments_popup_link( __( 'No Comments', 'simple-catch' ), __( '1 Comment', 'simple-catch' ), __( '% Comments', 'simple-catch' ) ); ?></li>
    	                    </ul>
    	                </div>
    	           	</header>
    	            <div class="entry-content clearfix">
    					<?php the_content();
    	                // copy this <!--nextpage--> and paste at the post content where you want to break the page
    	                 wp_link_pages(array(
    	                        'before'			=> '<div class="pagination">Pages: ',
    	                        'after' 			=> '</div>',
    	                        'link_before' 		=> '<span>',
    	                        'link_after'       	=> '</span>',
    	                        'pagelink' 			=> '%',
    	                        'echo' 				=> 1
    	                    ) );
    	                ?>
    				</div>
    	            <footer class="entry-meta">
    	            	<?php
    	                $tag = get_the_tags();
    	                if (! $tag ) { ?>
    	                    <div class='tags'><?php _e( 'Categories: ', 'simple-catch' ); ?> <?php the_category(', '); ?> </div>
    	                <?php } else {
    	                   	the_tags( '<div class="tags"> ' . __('Tags', 'simple-catch') . ': ', ', ', '</div>');
    	                } ?>
    	           	</footer>
    			</article><!-- #post-## -->
    
    		<?php endif;
    	} // simplecatch_loop
    endif;

    Let me know if this works out!
    Kind Regards,
    Skandha

    Skandha
    Participant

    @nomis: There was an issue with the Header Featured Image in the blog page. The issue has been resolved and will be updated in the next theme update.
    Thank you for reporting us the issue.

    Kind Regards,
    Skandha

    in reply to: Blog dates? #149131
    Skandha
    Participant

    @tg: For this you will need to create a child theme and make few customization. Please let me know if you are familiar with child theme customization.

    Kind Regards,
    Skandha

    in reply to: Copywrit #149130
    Skandha
    Participant

    @oki: 著作権を編集するためのフッターエディタオプションはテーマの無料版では利用できないので、プロにアップグレードすることをお勧めします.
    https://catchthemes.com/themes/foodie-world-pro/
    あなたは、テーマのプロ版で利用可能な追加の機能をチェックアウトすることができます。.
    https://catchthemes.com/theme-instructions/foodie-world-pro/

    別の方法として、子テーマを作成してこれを行うためのカスタマイズをほとんど行うことはできません。
    子テーマの生成プラグインを使用して子テーマを作成することができます。
    https://catchplugins.com/plugins/generate-child-theme/

    After creating child theme Go to => Parent Theme Folder => template-parts => footer and copy site-info.php file.
    Then Go to => Child Theme Folder => Paste the site-info.php file under template-parts/footer/ folder
    Now you can edit the copyright section in the site-info.php file

    Let me know if this helps you out.
    Kind Regards,
    Skandha

    in reply to: Need CSS help for featured slider #149125
    Skandha
    Participant

    @queenbuzzy: Hello there, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/adventurous/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated. Thanks, and if there’s anything else at all that I can do to help,
    don’t hesitate to let me know. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: Changing font size in Fotografie Pro #149124
    Skandha
    Participant

    @corina-gamma: Please post in your site URL so that I can look into the issue and help you out.

    Kind Regards,
    Skandha

    Skandha
    Participant

    @silkroaddog: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .page-id-14435 #masthead {
    	display:none;
    }

    Let me know if this is what you want!
    Kind Regards,
    Skandha

    in reply to: Blog dates? #149122
    Skandha
    Participant

    @tg: Please post in your site URL so that I can look into the issue.

    Kind Regards,
    Skandha

    in reply to: Foodie World Pro Theme – Demo Slider & Image Sizes #149121
    Skandha
    Participant

    @clarelibellule: The image is getting cropped may be because you are not using the recommended images sizes. Please check out the link to know about recommended image sizes. The images will show up well if you use image size similar to the recommended size or of the same aspect ratio.

    Let me know if the issue persists.
    Kind Regards,
    Skandha

    in reply to: Copywrit #149077
    Skandha
    Participant

    @oki: If you do not know much English. Let me know your language so that I can translate my message to your language.

    Kind Regards,
    Skandha

    Skandha
    Participant

    @nomis: You seem to have uploaded a different image size in the blog page. Please re-upload the featured image in blog and check if the issue is resolved.

    Let me know if the issue persists.
    Kind Regards,
    Skandha

    in reply to: Copywrit #149061
    Skandha
    Participant

    @oki: To edit copyright you will need Footer Editor Option which is only available in pro version of the theme. I suggest you to upgrade to pro. You can check out the additional features available in pro version of the theme.

    Alternately, you can create a child theme and make few customization to edit the copyright in the footer.
    Let me know if you are familiar with child theme customization.

    Kind Regards,
    Skandha

    in reply to: What changed in this New version ? #149059
    Skandha
    Participant

    @pedrosilva: Hello, there, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/clean-journal/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated. Thanks, and if there’s anything else at all that I can do to help,
    don’t hesitate to let me know. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: Need CSS help for featured slider #149058
    Skandha
    Participant

    @queenbuzzy: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    #controllers a {
    	background-color:#515AAD
    }

    Let me know if this is what you want!
    Kind Regards,
    Skandha

    in reply to: Header Media Title Not Appearing #149056
    Skandha
    Participant

    @simonraybould: Hello Simon, Could you please leave the review on the following link?
    https://wordpress.org/support/theme/corporate-fotografie/reviews/#new-post
    Sorry, for the trouble. Have a good day! 🙂

    Kind Regards,
    Skandha

Viewing 20 posts - 10,821 through 10,840 (of 12,034 total)