Forum Replies Created

Viewing 20 posts - 9,341 through 9,360 (of 12,014 total)
  • Author
    Posts
  • in reply to: Image behind page title #163636
    Skandha
    Member

    @pdequestrian18: I have already replied to you in the following link.
    https://catchthemes.com/support-forum/topic/how-to-increase-the-font-size-of-the-theme/#post-163559

    Kind Regards,
    Skandha

    in reply to: how to increase the font size of the theme? #163635
    Skandha
    Member

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

    /* To change the font size of title */
    .section-title {
         font-size:38px;
    }

    You can change the font size according to your requirement.
    Can you let me know which little icons you are referring to?

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

    in reply to: Third level menus not appearing #163618
    Skandha
    Member

    @bobgarretthomenetworks-co-uk: This seems to be a bug in the theme which will be fixed in the next theme update. Thank you for reporting us the bug.
    For now, Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .fixed-header #header-right .widget ul.menu ul ul,
    #header-right .widget ul.menu ul ul {
    	right: 220px;
    	top: 0;
    	left:unset;
    }

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

    in reply to: Need help #163562
    Skandha
    Member

    @batsavvy: 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/catch-base/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: hide Extra Header Widget Area on single pages #163561
    Skandha
    Member

    @marie21: Please check that page. I have added the CSS Code and the text widget now is hidden.

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

    in reply to: hide Extra Header Widget Area on single pages #163555
    Skandha
    Member

    @marie21: Please let me know on which pages you would like to hide the text widget so that I can provide you the necessary CSS Code.

    Kind Regards,
    Skandha

    in reply to: hide Extra Header Widget Area on single pages #163552
    Skandha
    Member

    @marie21: Do you want to hide the text widget only on a particular page or on your entire site? Please let me know what you would like to do.

    Kind Regards,
    Skandha

    in reply to: hide Extra Header Widget Area on single pages #163549
    Skandha
    Member

    @marie21: This is strange. I will need to login to your site and look into the issue. For that I will need your WP admin credentials. I will contact you shortly by email.

    Kind Regards,
    Skandha

    in reply to: Event Date with year #163548
    Skandha
    Member

    @cappellanova: Hello there,
    Can you please in your site URL.
    The ordering is not done by month/day but is done in the same order you have put them in the event section.

    Kind Regards,
    Skandha

    in reply to: hide Extra Header Widget Area on single pages #163543
    Skandha
    Member

    @marie21: Using .page-id-2233 .textwidget {display: none;} the widget is being hidden when I check your site at my end. Please try clearing your browser cache and let me know if this works out!

    Kind Regards,
    Skandha

    in reply to: Customizing the footer #163535
    Skandha
    Member

    @nomade-2018: I have just sent you an email. Please check it out!

    Kind Regards,
    Skandha

    in reply to: Style Sheet Errors with Version: 2.7 #163534
    Skandha
    Member

    @husker: The issue you are having with the facebook and rss not showing up in featured content section is because of Updated Content delivered through the_content filter for security reason which has been made in 2.7 version.

    For this you will need to add a bit of code to your child theme.
    Go to => Child Theme Folder => functions.php and add the following Code.

    function catchresponsive_page_content( $options ) {
    	global $post;
    
    	$quantity 					= $options['featured_content_number'];
    
    	$more_link_text				= $options['excerpt_more_text'];
    
    	$show_content	= $options['featured_content_show'];
    
    	$catchresponsive_page_content 	= '';
    
       	$number_of_page 			= 0; 		// for number of pages
    
    	$page_list					= array();	// list of valid pages ids
    
    	//Get valid pages
    	for( $i = 1; $i <= $quantity; $i++ ){
    		if ( isset ( $options['featured_content_page_' . $i] ) && $options['featured_content_page_' . $i] > 0 ){
    			$number_of_page++;
    
    			$page_list	=	array_merge( $page_list, array( $options['featured_content_page_' . $i] ) );
    		}
    
    	}
    	if ( !empty( $page_list ) && $number_of_page > 0 ) {
    		$loop = new WP_Query( array(
                        'posts_per_page' 		=> $number_of_page,
                        'post__in'       		=> $page_list,
                        'orderby'        		=> 'post__in',
                        'post_type'				=> 'page',
                    ));
    
    		$i=0;
    		while ( $loop->have_posts()) : $loop->the_post(); $i++;
    			$title_attribute = the_title_attribute( array( 'before' => __( 'Permalink to: ', 'catch-responsive' ), 'echo' => false ) );
    
    			$excerpt = get_the_excerpt();
    
    			$catchresponsive_page_content .= '
    				<article id="featured-post-' . $i . '" class="post hentry featured-page-content">';
    				if ( has_post_thumbnail() ) {
    					$catchresponsive_page_content .= '
    					<figure class="featured-homepage-image">
    						<a href="' . esc_url( get_permalink() ) . '" title="'.the_title( '', '', false ).'">
    						'. get_the_post_thumbnail( $post->ID, 'catchresponsive-featured-content', array( 'title' => $title_attribute, 'alt' => $title_attribute, 'class' => 'pngfix' ) ) .'
    						</a>
    					</figure>';
    				}
    				else {
    					$catchresponsive_first_image = catchresponsive_get_first_image( $post->ID, 'catchresponsive-featured-content', array( 'title' => $title_attribute, 'alt' => $title_attribute, 'class' => 'pngfix' ) );
    
    					if ( '' != $catchresponsive_first_image ) {
    						$catchresponsive_page_content .= '
    						<figure class="featured-homepage-image">
    							<a href="' . esc_url( get_permalink() ) . '" title="'.the_title( '', '', false ).'">
    								'. $catchresponsive_first_image .'
    							</a>
    						</figure>';
    					}
    				}
    
    				$catchresponsive_page_content .= '
    					<div class="entry-container">
    						<header class="entry-header">
    							<h2 class="entry-title">
    								<a href="' . esc_url( get_permalink() ) . '" rel="bookmark">' . the_title( '','', false ) . '</a>
    							</h2>
    						</header>';
    						if ( 'excerpt' == $show_content ) {
    							$catchresponsive_page_content .= '<div class="entry-excerpt"><p>' . $excerpt . '</p></div><!-- .entry-excerpt -->';
    						}
    						elseif ( 'full-content' == $show_content ) {
    							$content = apply_filters( 'the_content', get_the_content() );
    							$content = str_replace( ']]>', ']]>', $content );
    							$catchresponsive_page_content .= '<div class="entry-content">' . $content . '</div><!-- .entry-content -->';
    						}
    					$catchresponsive_page_content .= '
    					</div><!-- .entry-container -->
    				</article><!-- .featured-post-'. $i .' -->';
    		endwhile;
    
    		wp_reset_postdata();
    	}
    
    	return $catchresponsive_page_content;
    }

    Let me know if this resolves the issue you are having.
    Also I have updated your theme to the latest version and backed up previous theme in Media Section.

    Kind Regards,
    Skandha

    in reply to: Size of images at News-page #163533
    Skandha
    Member

    @svguitar: Hello there, I checked your site and you seem to have resolved the issue.

    Let me know if you have anymore issues!
    Kind Regards,
    Skandha

    in reply to: How do i disable the search button on the top right corner? #163532
    Skandha
    Member

    @thejway: 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/fotografie-blog/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: In responsive view position of pictures change #163531
    Skandha
    Member

    @emree025: When I check yours site at my end the images can be made upto 185px wide and be shown in two columns. Please check and let me know if this works out!

    Kind Regards,
    Skandha

    in reply to: Change capitalisation in menu #163529
    Skandha
    Member

    @tim-van-rooijen: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    #menu-hoofdmenu li {
    	text-transform:lowercase;
    }

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

    in reply to: how to increase the font size of the theme? #163527
    Skandha
    Member

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

    article .entry-content {
    	font-size:18px;
    }

    You can change the font size according to your requirement!
    Kind Regards,
    Skandha

    in reply to: Heather image #163526
    Skandha
    Member

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

    .custom-header .wrapper {
         height:520px;
    }

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

    in reply to: Menu Icons/ Arrows #163522
    Skandha
    Member

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

    Kind Regards,
    Skandha

    in reply to: Elementor #163521
    Skandha
    Member

    @erich74: We have not performed compatibility test of our themes with Elementor so we do not official support Elementor or any such page builder plugins.

    Kind Regards,
    Skandha

Viewing 20 posts - 9,341 through 9,360 (of 12,014 total)