Forum Replies Created
-
AuthorPosts
-
Mahesh
Participant@janolof: Thank you for your appreciation. Sorry for the trouble. Glad it worked for you.
Regards,
MaheshMahesh
Participant@janolof: Sorry, it should be comments not comment, was a Typo. For just modifying Custom CSS, you do not need to create child theme.
#comments .comments-title { display: none; }Regards,
MaheshMahesh
Participant@friarpaul:
Hi Paul,For this, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme create
content-page.phpfile and add the following codes:<?php /** * The template used for displaying page content in page.php * * @package Catch Themes * @subpackage Catch Base Pro * @since Catch Base 1.0 */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <div class="entry-container"> <header class="entry-header"> <h1 class="entry-title"><?php the_title(); ?></h1> </header><!-- .entry-header --> <?php /** * catchbase_before_page_container hook * * @hooked catchbase_single_content_image - 10 */ do_action( 'catchbase_before_page_container' ); ?> <div class="entry-content"> <?php the_content(); ?> <?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="pages">' . __( 'Pages:', 'catch-base-pro' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>', ) ); ?> </div><!-- .entry-content --> <?php edit_post_link( __( 'Edit', 'catch-base-pro' ), '<footer class="entry-footer"><span class="edit-link">', '</span></footer>' ); ?> </div><!-- .entry-container --> </article><!-- #post-## -->Regards,
MaheshMahesh
Participant@onnalomd: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
#main .entry-content { font-size: 14px; font-family: "Droid Serif"; }Note:
1. Please adjust the font size as desired.
2. Please use your desired serif font.Regards,
MaheshMahesh
Participant@advisecincinnati:
Hi Brain:The Promotion Headline is just for text and link purpose only. If you want to put form or other elements apart from plain text, you’ll need to further customize. I recommend you to hire a customizer.
Regards,
MaheshMahesh
Participant@macorsini: Please post in your site url.
Regards,
MaheshMahesh
Participant@josefkuhnt:
Hi Josef, I checked for the issue in our server and all worked just fine. Are you any plugins? If yes, please try disabling it and check if it resolves the issue. Let me know if the problem persist, we’ll contact you through email.Regards,
MaheshMahesh
Participant@janolof: This is WordPress by default functionality. That displays about number of comments for the blog. If you simply want to hide it, it can be done with Custom CSS. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
#comments .comments-title { display: none; }But if you want to get rid of it, you’ll need to create a child theme. You can find more about creating child theme HERE. Then override
comments.phpfile.Regards,
MaheshMahesh
Participant@helpme: Please try disabling plugins if you are using any and check again. If that didn’t help either then there is some issue in your WordPress Core. Please try reinstalling the fresh copy of WordPress and try again.
Regards,
MaheshMahesh
Participant@scoop: Please use the following CSS instead. I tested this one on your site.
#secondary .widget { margin-bottom: 15px; padding: 10px 30px; }Regards,
MaheshMahesh
Participant@petermilliken: Thank you for your appreciation. Have a nice day!
Regards,
MaheshMahesh
Participant@scoop: For moving the image to the left, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
#header-featured-image { margin: 0 auto; max-width: 1160px; } #header-featured-image img { margin: 0; }Regards,
MaheshMahesh
Participant@janetwad:
Hi Janet,Thank you for your appreciation. If you like my support and Catch Everest theme then please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/catch-everest?rate=5#postform.
Have a nice day.Regards,
MaheshMahesh
Participant@hedibelkhodja:
Hi Belkhodja,This can be done with Custom CSS. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
#main .entry-header .posted-on { display: none; }Regards,
MaheshMahesh
Participant@maxxbogner1988: This option is already available in Full Frame Pro. Go to Dashboard=> Appearance=> Customize=> Featured Content=> Featured Content Options and select Featured Category Content in Select Content Type. Then scroll down and select the desired category/categories you want to display in as Featured Content. Then click Save & Publish.
I don’t understand this one:
Or another option would be to be able to have my posts go to multiple pages.Let me know further.
Regards,
MaheshMahesh
Participant@compyfox: Okay, I just checked you site and I found the problem, you are having. The image is still 1680×720. The theme uses header image as background image and has some padding given to it. Plus the content within the Header Image options (Title, Content and Button) affects the height of the Featured Header and so as the Header Image itself. The problem in your case is, you have removed the content so the content height is zero. And only padding is there. That is why the div’s height is small and the image seemed to be cropped.
As you put the content in the Header Image, it will seem exactly as the demo.
Hope this helps. Let me know further.Regards,
MaheshMahesh
Participant@helpme: Yes you can switch back to this theme again anytime. It won’t affect pages layout. Just switch the theme and do a quick check on the issue exist on the other theme too. Then you can switch back to the current theme again.
Regards,
MaheshMahesh
Participant@janetwad: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
.archive.category-latest-news #primary { width: 100%; } .archive.category-latest-news #secondary { display: none; }Regards,
MaheshMahesh
Participant@scoop: I’ve answered this one in the other thread. https://catchthemes.com/support-forum/topic/sidebar-widget-padding/#post-96979
Please do not post same thing twice.
Please post in your site url so I could help you further.Regards,
MaheshMahesh
Participant@hidemyage: Go to Dashbaord=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
@media screen and (min-width: 941px) { #branding { position: fixed; z-index: 10; margin: 0 auto; left: 0; right: 0; } #header-menu { position: fixed; z-index: 5; margin: 0 auto; left: 0; right: 0; } #main-wrapper { margin-top: 57px; } }Regards,
Mahesh -
AuthorPosts
