Forum Replies Created

Viewing 20 posts - 10,801 through 10,820 (of 12,014 total)
  • Author
    Posts
  • in reply to: distance and colors #149332
    Skandha
    Member

    @josefsdorf: Yes, I think you can change the previous and next button using the plugin.

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

    .post .entry-title {
         padding-top:20px;
    }

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

    in reply to: main content area of Clean Journal not responsive #149331
    Skandha
    Member

    @anjika: You seem to using a child theme. Please activate the parent theme and check for responsiveness. If the parent theme is responsive it will mean the there is some issue with the child theme. Also you seem to have used plugins and have made a lot of customization to the site. This may be the reason the site is not being responsive.

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

    in reply to: Copywrit #149317
    Skandha
    Member

    @oki:こんにちは、
    あなたの問題を解決できることを願っています。それはあまりにも多くのトラブルではない場合は、
    あなたに正直な見解を残してもらえますか?
    https://wordpress.org/support/theme/foodie-world/reviews/#new-post
    あなたのレビューは、他の人が見ているときに何を期待するかを知るのに役立ちます
    私が提供するサポートのために。 1つか2つでも大いに
    感謝。
    ありがとうございました。もし私が助けることができるものが他にもあれば、
    私に知らせるために躊躇しないでください。

    Kind Regards,
    Skandha

    in reply to: Widened Jetpack gallery #149306
    Skandha
    Member

    @lmphotos: Full Content Width Page template 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 use additional css
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .post-501 .entry-content {
    	 max-width:1148px !important;
    }

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

    in reply to: Copywrit #149304
    Skandha
    Member

    @oki: まず、子テーマを作成する必要があります。子テーマの作成方法がわからない場合は、子テーマプラグインの生成を使用できます。
    https://catchplugins.com/plugins/generate-child-theme/

    子テーマを作成した後=>親テーマフォルダ=> template-parts =>フッターに移動し、site-info.phpファイルをコピーします。
    次に、=> Child Theme Folder => template-parts / footer / folderの下にsite-info.phpファイルを貼り付けます。
    これでsite-info.phpファイルの著作権セクションを編集できます

    I hope this helps you out.
    Kind Regards,
    Skandha

    in reply to: distance and colors #149289
    Skandha
    Member

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

    /*To change background and border color of Read More button */
    .readmore a {
    	background-color:red;
    	border-color:blue;
    }
    /*To change Pagination button color */
    .post-navigation a:hover, .post-navigation a:focus {
    	background-color:#123456;
    }

    You can change the color according to your requirement.

    To change previous and next text in the pagination button you will need to create a child theme and do a bit of customization. Let me know if you are familiar with child theme customization.

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

    in reply to: Theme Featured Slider #149288
    Skandha
    Member

    @the-way-of-wellbeing: What you can do is Enable the slider on entire site. Then
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    body:not(.page) #main-slider {
    	display:none;
    }

    This way the slider will be enabled only on pages.

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

    in reply to: distance and colors #149222
    Skandha
    Member

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

    /* To change space the between featured image and page titles */
    .page .entry-title {
    	padding-top:20px;
    }

    Please post in your URL and let me know which read more button color you want to be changed.

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

    in reply to: Logo too small #149193
    Skandha
    Member

    @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
    Member

    @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
    Member

    @pmagsco: Please post in your site URL!

    Kind Regards,
    Skandha

    in reply to: Logo too small #149180
    Skandha
    Member

    @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
    Member

    @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
    Member

    @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
    Member

    @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
    Member

    @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
    Member

    @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
    Member

    @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
    Member

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

    Kind Regards,
    Skandha

    Skandha
    Member

    @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

Viewing 20 posts - 10,801 through 10,820 (of 12,014 total)