Forum Replies Created
-
AuthorPosts
-
Mahesh
Participant@antoon: Have you uploaded the font file to you site? If not please upload it first. Then get the full path to that font file and place in the CSS src, then only it will work.
And as for the bar in the footer, you are using table for that, and for you have inline style defining the width of the table, which is causing the responsive issue. You should not use fix width as far as you want the responsive design.
I don’t know the exact plugin, but you can get an appropriate one from https://wordpress.org/plugins/Buying a Pro version theme, you can use it for as many site as you’ve owned unless its for the 3rd party.
Regards,
MaheshMahesh
Participant@rollik: For the grey background in header, use the following CSS instead:
#masthead { background-color: rgba(204, 204, 204, 0.9); }Hope this helps.
Regards,
MaheshJuly 21, 2016 at 5:09 pm in reply to: Adding widgets – social icons/search bar over the header image. #95869Mahesh
Participant@kimberley: Can you please share an image showing your problem. I would help more.
Regards,
MaheshMahesh
Participant@tinus53:
Hi Bernhard,Its not fixed yet but there is a trick, may be we’ll use that to fix it in our future updates. Sorry for the inconvenience.
Regards,
MaheshMahesh
Participant@nextgenf: For that you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s functions.php, add the following code:
function catchkathmandu_category_sliders() { //delete_transient( 'catchkathmandu_category_sliders' ); global $post; global $catchkathmandu_options_settings; $options = $catchkathmandu_options_settings; if( ( !$catchkathmandu_category_sliders = get_transient( 'catchkathmandu_category_sliders' ) ) && !empty( $options[ 'slider_category' ] ) ) { echo '<!-- refreshing cache -->'; $catchkathmandu_category_sliders = ' <div id="main-slider" class="container"> <section class="featured-slider">'; $get_featured_posts = new WP_Query( array( 'posts_per_page' => $options[ 'slider_qty' ], 'category__in' => $options[ 'slider_category' ], 'ignore_sticky_posts' => 1 // ignore sticky posts )); $i=0; while ( $get_featured_posts->have_posts()) : $get_featured_posts->the_post(); $i++; $title_attribute = apply_filters( 'the_title', get_the_title( $post->ID ) ); $excerpt = get_the_excerpt(); if ( $i == 1 ) { $classes = 'post pageid-'.$post->ID.' hentry slides displayblock'; } else { $classes = 'post pageid-'.$post->ID.' hentry slides displaynone'; } $catchkathmandu_category_sliders .= ' <article class="'.$classes.'"> <figure class="slider-image">'. get_the_post_thumbnail( $post->ID, 'slider', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class' => 'pngfix' ) ). '</figure> <div class="entry-container"> <header class="entry-header"> <h1 class="entry-title"> <a title="Permalink to '.the_title('','',false).'" href="' . get_permalink() . '">'.the_title( '<span>','</span>', false ).'</a> </h1> <div class="assistive-text">'.catchkathmandu_page_post_meta().'</div> </header>'; if( $excerpt !='') { $catchkathmandu_category_sliders .= '<div class="entry-content">'. $excerpt.'</div>'; } $catchkathmandu_category_sliders .= ' </div> </article><!-- .slides -->'; endwhile; wp_reset_query(); $catchkathmandu_category_sliders .= ' </section> <div id="slider-nav"> <a class="slide-previous"><</a> <a class="slide-next">></a> </div> <div id="controllers"></div> </div><!-- #main-slider -->'; set_transient( 'catchkathmandu_category_sliders', $catchkathmandu_category_sliders, 86940 ); } echo $catchkathmandu_category_sliders; } // catchkathmandu_category_slidersRemoving text from slider, you can use Custom CSS. Go to Dashboard=> Appearance=> Customzie=> Theme Options=> Custom CSS and add the following CSS:
#main-slider .entry-container { display: none; }Regards,
MaheshMahesh
Participant@husker: Adding more slider will make your site slower. But if you do want to have it anyway, I can help you. Are you a developer or have a good programming knowledge? because the customization for this is complicated. If you are okay with programming, I can guide you through. If not I recommend you to hire a customizer for this.
https://catchthemes.com/hire-customizer/Regards,
MaheshMahesh
Participant@rflores:
Hi rflores,Can you send me the link of the page of other website and the text you want to display as link, then I’ll provide you with the HTML code for the anchor tag.
Regards,
MaheshMahesh
Participant@moonrun:
Hi Jen,I checked for the issue in Clean Business Pro in our server and it seems to be working fine. Please post in your site URL.
Regards,
MaheshMahesh
Participant@tinus53: The issue is seems to be caused by WP core itself.
https://wordpress.org/support/topic/custom-header-image-issue-default-header-not-displayed
If you want to have the header image as of the default one, please use the following image
https://catchthemes.com/demo/catch-adaptive/wp-content/themes/catch-adaptive-pro/images/headers/image-header-1680×720.jpgRegards,
MaheshMahesh
Participant@tinus53: Yes, that’s the trick. Thank you for your appreciation. If you like my support and Catch Adaptive theme then please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/catch-adaptive?rate=5#postform
Have a nice day!Regards,
MaheshMahesh
Participant@smaypower: Thank you for your appreciation. Glad to know you issue is resolved. Have a nice day!
Regards,
MaheshMahesh
Participant@rflores: You can simply add the anchor tag into the content of that blog.
Example:
<a target="_blank" title ="Text you want to display as link" href="link-to-page-in-different-website">Text you want to display as link</a>Regards,
MaheshMahesh
Participant@tinus53: Then you’ll need the CSS that applies to the specific page only. Please use the following Custom CSS instead:
#post-135 .entry-content ul > li { list-style: none; } #post-135 .event-list .end-date { margin-left: 0; } #post-135 .multi-day { margin: 0; }Hope this helps.
Note: I assume you have calendar list in this very page only.Regards,
MaheshMahesh
Participant@jvece1: Glad to know you’ve solved it all by yourself. Have a nice day!
Regards,
MaheshJuly 20, 2016 at 9:49 am in reply to: Adding widgets – social icons/search bar over the header image. #95798Mahesh
Participantlmkele:
Hi Kimberley,Thank you for using Catch Flames Pro.
Please post in your site url / a screenshot of your problem so that I can check for the issue and help your further.Regards,
MaheshMahesh
Participant@antoon:
Hi Antoon,The above CSS is not complete it is just an example. For that you’ll need to first upload the ttf font in to your site’s folder somewhere way
yoursite/wp-content/uploadsand then in add the following Custom CSS:@font-face { font-family: myCalibri; src: url(yoursite/wp-content/uploads/calibri.ttf) format('truetype'); } body { font-family: myCalibri, "Calibri"; }Note: Please change the path in the above CSS to your site’s relative path.
Do you mean to center everything in the footer? Even the table’s content? If so add the following CSS:
.footer, .footer table td, th { text-align: center; }Let me know if any problem.
Regards,
MaheshMahesh
Participant1. Column Layout uses excerpt content too. 🙂
2. Square list-type is from theme theme’s
style.cssand the margin is from event-list.cssRegards,
MaheshMahesh
Participant@tinus53: The steps you’ve followed is correct, and should have causing such issue. Yes, please try reinstalling the theme, hope it helps. Let me know if the problem persists.
Regards,
MaheshMahesh
Participant@sheilalowe: Glad to know you’re able to update the theme and make it working. Have a nice day!
Regards,
Mahesh -
AuthorPosts
