Forum Replies Created

Viewing 20 posts - 8,621 through 8,640 (of 12,027 total)
  • Author
    Posts
  • 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

    in reply to: changing a layout in the buttom of a site #169127
    Skandha
    Participant

    @knudkp: Hello there,
    I’m afraid that is not possible. You will need to get your site customized for that. If you really need it I suggest you to hire a customizer.

    Kind Regards,
    Skandha

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

    @vraba: Hello there,
    I will forward this issue to the sales department and will get back to you soon.
    Also Can you fill in the form in this link https://catchthemes.com/contact-us/ and post your issue from your side?

    Kind Regards,
    Skandha

    in reply to: Change menu color #169124
    Skandha
    Participant

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

    .main-navigation ul ul .current_page_item > a {
    	color:red !important;
    }

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

    in reply to: Catch Sticky Menu Plugin #169123
    Skandha
    Participant

    @hoiung: Hello there,
    You seem to have disabled the Catch Sticky Plugin. Can you enable it so that I can provide you the CSS Code for changing menu text colors?

    Kind Regards,
    Skandha

    in reply to: Background Image on Front Page #169118
    Skandha
    Participant

    @sloaneranger: 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-fullscreen/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: Login Button Styling Not Taking Effect #169110
    Skandha
    Participant

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

    button {
    	background-image:none;
    }

    Let me know if this resolve your issue.
    Kind Regards,
    Skandha

    in reply to: Menu item number required for sidebar #169107
    Skandha
    Participant

    @jennifersimsdesign-com-au: Hello Jennifer,
    The menu item number would be #menu-item-4540.

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

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