Forum Replies Created

Viewing 20 posts - 8,621 through 8,640 (of 12,034 total)
  • Author
    Posts
  • Skandha
    Participant

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

    .wrapper.singular-section {
    	padding:50px;
    }
    .blog-section-headline {
    	margin-top:0;
    }

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

    in reply to: Blog images #169294
    Skandha
    Participant

    @mattfini: To adjust the image size of the news feed
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .post-archive .content-right {
         padding:100px 112px;
    }

    You can change the padding according to your choice.
    Let me know if this helps you out!
    Kind Regards,
    Skandha

    in reply to: Hide the date on Featured Content #169290
    Skandha
    Participant

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

    #featured-content-section .entry-date {
          display:none;
    }

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

    in reply to: Scrolling is no longer parallax #169277
    Skandha
    Participant

    @manonwethly: With the code in the second image the background will stay fixed from 767px and above whereas below 767px the background will scroll with text or content.

    Kind Regards,
    Skandha

    in reply to: How to add my images in the slider in the free version? #169276
    Skandha
    Participant

    @jack7250: Hello Jack,
    In the free version the slider only shows Featured Image from a Post.
    To have slider that shows series of images from the media library you will need the Featured Image Slider which is only available in pro version of the theme. You can check out the additional-features available in pro version of the theme.

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

    in reply to: Customization Questions #169220
    Skandha
    Participant

    @kghia70: 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/higher-education/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: 5 section points in one line #169207
    Skandha
    Participant

    @steinundtechnik: You can use our Catch Import Export Plugin to copy all your customizer settings from the parent theme to the child theme. Install and Activate the plugin.

    Follow these instructions to import the customizer setting of parent theme to your child theme.

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

    in reply to: Scrolling is no longer parallax #169199
    Skandha
    Participant

    @manonwethly: This is due to the following CSS Code you have added.

    #fullpage .header-media.section {
    	background-attachment: scroll;
    }
    #post-727, #post-32, #post-4 {
        background-attachment: scroll !important;
    }

    Replace the above CSS Code by the following.

    @media screen and (max-width:767px) {
    	#fullpage .header-media.section {
    		background-attachment: scroll;
    	}
    	#post-727, #post-32, #post-4 {
    	    background-attachment: scroll !important;
    	}
    }

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

    in reply to: 5 section points in one line #169195
    Skandha
    Participant

    @steinundtechnik: So firstly you will need to create a child theme. For that you can use our Generate Child Theme Plugin. Install and activate the plugin.
    Then, Go to => Dashboard => Generate Child Theme => Select Parent Theme as Catch Fullscreen Pro, fill other fields and then click on Generate.
    This will install and activate the child theme.

    Now, Go to => Child Theme Folder => functions.php and add the following Code.

    function catch_fullscreen_service_display() {
    	$output = '';
    
    	// get data value from options
    	$enable_content = get_theme_mod( 'catch_fullscreen_service_option', 'disabled' );
    
    	if ( catch_fullscreen_check_section( $enable_content ) ) {
    		$content_select = get_theme_mod( 'catch_fullscreen_service_type', 'category' );
    		$layout        	= get_theme_mod( 'catch_fullscreen_service_layout', 'layout-four' );
    		$headline       = get_theme_mod( 'catch_fullscreen_service_headline', esc_html__( 'Services', 'catch-fullscreen-pro' ) );
    		$subheadline    = get_theme_mod( 'catch_fullscreen_service_subheadline' );
    		$image = get_theme_mod( 'catch_fullscreen_service_main_image' );
    		$classes[] = 'section';
    		$classes[] = $content_select ;
    
    		$anchor = get_theme_mod( 'catch_fullscreen_service_anchor', 'service-section' );
    
    		if ( $image ) {
    			$output = '
    			<div id="service-content-section" data-anchor="' . esc_attr( $anchor ) . '" class="' . esc_attr( implode( ' ', $classes ) ) . '" style="background-image: url( ' . esc_url( $image ) . ' )">
    				<div class="wrapper">';
    		} else {
    			$output = '
    			<div id="service-content-section" data-anchor="' . esc_attr( $anchor ) . '" class="' . esc_attr( implode( ' ', $classes ) ) . '">
    				<div class="wrapper">';
    		}
    
    		if ( ! empty( $headline ) || ! empty( $subheadline ) ) {
    			$output .= '<div class="section-heading-wrapper service-section-headline">';
    
    			if ( ! empty( $headline ) ) {
    				$output .= '<div class="section-title-wrapper"><h2 class="section-title">' . wp_kses_post( $headline ) . '</h2></div>';
    			}
    
    			if ( ! empty( $subheadline ) ) {
    				$output .= '<div class="taxonomy-description-wrapper"><p class="section-subtitle">' . wp_kses_post( $subheadline ) . '</p></div>';
    			}
    
    			$output .= '
    			</div><!-- .section-heading-wrapper -->';
    		}
    		$output .= '
    			<div class="section-content-wrapper service-content-wrapper ' . esc_attr( $layout ) . '">';
    
    		// Select content
    		if ( 'post' === $content_select || 'ect-service' === $content_select || 'page' === $content_select || 'category' === $content_select ) {
    			$output .= catch_fullscreen_post_page_category_service();
    		} elseif ( 'image' === $content_select ) {
    			$output .= catch_fullscreen_image_service();
    		}
    
    		$target = get_theme_mod( 'catch_fullscreen_service_target' ) ? '_blank': '_self';
    		$link   = get_theme_mod( 'catch_fullscreen_service_link', '#' );
    		$text   = get_theme_mod( 'catch_fullscreen_service_text' );
    
    		if ( $text ) {
    			$output .= '
    			<p class="view-all-button">
    				<span class="more-button"><a class="more-link" target="' . $target . '" href="' . esc_url( $link ) . '">' . esc_html( $text ) . '</a></span>
    			</p>';
    		}
    
    		$output .= '
    					</div><!-- .service-content-wrapper -->
    			</div><!-- .wrapper -->
    		</div><!-- #service-content-section -->';
    
    	}
    
    	echo do_shortcode( $output );
    }

    Now the shortcode on your service section should work.
    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Header to small with 4.3.3 #169188
    Skandha
    Participant

    @hanmedia: Hello Olaf,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .site {
    	width:1250px;
    }

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

    in reply to: 5 section points in one line #169187
    Skandha
    Participant

    @steinundtechnik: For this you will need to create a child theme and do a little bit of customization. Let me know if you are familiar with child theme customization so that I can guide you, otherwise I suggest you to hire a customizer to get it done.

    Kind Regards,
    Skandha

    in reply to: Shop page does not display sidebar #169186
    Skandha
    Participant

    @beltan: Go to => Appearance => Customize => Theme Options => Layout Options => WooCommerce Layout => Select Left Sidebar or Right Sidebar
    Do you have this option checked?

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

    in reply to: Scrolling is no longer parallax #169181
    Skandha
    Participant

    @manonwethly: Hello Manon,
    I checked your site and the scrolling seems to be working well. Can you please elaborate the issue you are having?

    Kind Regards,
    Skandha

    in reply to: Customization Questions #169179
    Skandha
    Participant

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

    /* To increase the font size of navigation menu */
    .main-navigation ul a {
    	font-size:20px !important;
    }
    /* To hide the Secondary Menu text on smaller screens */
    .menu-label {
    	display:none !important;
    }

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

    Skandha
    Participant

    @barsonfrank156: Most of our themes have full screen sliders. You can choose from this list of themes.

    Kind Regards,
    Skandha

    in reply to: Anchor IDs for Custom Menu Links – Not Working #169141
    Skandha
    Participant

    @sloaneranger: There seems to be an issue with the anchor ids section in the customizer. I will look into the issue and try fixing it. Until then please use the #id’s I posted in the above reply.

    Kind Regards,
    Skandha

    in reply to: 5 section points in one line #169138
    Skandha
    Participant

    @steinundtechnik: Can you let me know which plugin you are using for that form and can you activate the plugin on your site?

    Kind Regards,
    Skandha

    in reply to: Problem after updating to WordPress 5.1 #169132
    Skandha
    Participant

    @vraba: Also you will need to renew your theme subscription to get further theme updates. Are you not willing to renew your subscription?

    Kind Regards,
    Skandha

    in reply to: Resize header image #169130
    Skandha
    Participant

    @catwingz: Hello there,
    Can you post in the URL of the site where the background image is cropping the way you like?

    To have a different image on smaller screens
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    @media screen and (max-width:600px) {
    	.custom-header-content {
    		background-image:url("https://catchthemes.com/demo/euphony-pro/wp-content/themes/euphony-pro/assets/images/header-image.jpg");
    		background-size:cover;
    	}
    	.no-header-media-text .custom-header-media img {
    		display:none;
    	}
    }

    Replace the image URL with image of your choice.
    Let me know if this helps you out!
    Kind Regards,
    Skandha

    in reply to: 5 section points in one line #169128
    Skandha
    Participant

    @steinundtechnik: Do you mean Starte deine perfekte Reise hier! text or something else? Can you please clarify?

    Kind Regards,
    Skandha

Viewing 20 posts - 8,621 through 8,640 (of 12,034 total)