Forum Replies Created
-
AuthorPosts
-
Skandha
Participant@coconuts4sale: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.
#feature-slider-section .slider-content-wrapper, .home .custom-header-content { padding:150px 49px; }You can change the padding to change the position of the text.
Let me know if this works out!
Kind Regards,
SkandhaSkandha
Participant@clydspyd: Please post in your site URL so that I can look into the issue.
Kind Regards,
SkandhaSkandha
Participant@eschejac: 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,
SkandhaSkandha
Participant@husker: Now that you have added the code in your Child Theme the issue won’t arise again even when a new update is released.
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-responsive/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@marie21: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.
.page-id-2233 #text-2 .textwidget { display:none; }This should solve the issue you are having.
Let me know if this works out!
Kind Regards,
SkandhaSkandha
Participant@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-163559Kind Regards,
SkandhaSkandha
Participant@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,
SkandhaSkandha
Participant@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,
SkandhaSkandha
Participant@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,
SkandhaSkandha
Participant@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,
SkandhaSkandha
Participant@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,
SkandhaSkandha
Participant@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,
SkandhaSkandha
Participant@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,
SkandhaSkandha
Participant@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,
SkandhaSkandha
Participant@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,
SkandhaSkandha
Participant@nomade-2018: I have just sent you an email. Please check it out!
Kind Regards,
SkandhaSkandha
Participant@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,
SkandhaSkandha
Participant@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,
SkandhaJanuary 15, 2019 at 1:04 am in reply to: How do i disable the search button on the top right corner? #163532Skandha
Participant@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 -
AuthorPosts
