Forum Replies Created
-
AuthorPosts
-
April 5, 2019 at 12:12 am in reply to: Too much white space beneath featured content and above the NEWS section #169296
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,
SkandhaSkandha
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,
SkandhaSkandha
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,
SkandhaSkandha
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,
SkandhaApril 4, 2019 at 12:52 pm in reply to: How to add my images in the slider in the free version? #169276Skandha
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,
SkandhaSkandha
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,
SkandhaSkandha
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,
SkandhaSkandha
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,
SkandhaSkandha
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,
SkandhaSkandha
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,
SkandhaSkandha
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,
SkandhaSkandha
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,
SkandhaSkandha
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,
SkandhaSkandha
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,
SkandhaApril 2, 2019 at 11:20 pm in reply to: How do I prepare full screen sliders with the help of catchthemes? #169178Skandha
Participant@barsonfrank156: Most of our themes have full screen sliders. You can choose from this list of themes.
Kind Regards,
SkandhaSkandha
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,
SkandhaSkandha
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,
SkandhaSkandha
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,
SkandhaSkandha
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,
SkandhaSkandha
Participant@steinundtechnik: Do you mean Starte deine perfekte Reise hier! text or something else? Can you please clarify?
Kind Regards,
Skandha -
AuthorPosts
