Forum Replies Created
-
AuthorPosts
-
Mahesh
Participant@diet: Just deleted the post. For different header color, you can use custom css:
.header-bg #masthead { background-color: #ff00ff; }Regards
MaheshMahesh
Participant@m-mommers: The above mentioned problem of not visible caption is because of the following CSS:
.site-content { color: #ffffff; }
Please remove it or add the following Custom CSS:.site-content .wp-caption-text { color: #bbb; }For number of sliders more than 20, you’ll need to modify some code in the theme itself. Edit
functions/panel/customizer/customizer.phpand go to line 422 and modify'max' => 20,to your desired number.
This cannot be modified through child theme, so you’ll need to modify the code in the theme itself.
Note: On every update, make sure you do this customization again so you won’t lose it.Regards,
MaheshMahesh
Participant@cjdodaro: Sorry for the late reply. Just checked your site, you are currently using another theme. Please activate catch box and let me know. By default, the theme uses the normal pagination.
Regards,
MaheshMahesh
Participant@omenicus: We’ll need to check for the issue on your server. We’ll contact you through email shortly.
Regards,
MaheshMahesh
Participant@yourexpertself: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
#feature-slider .entry-container { display: none; }Regards,
MaheshMahesh
Participant@medialegends: Please post in your site url.
Regards,
MaheshMahesh
Participant@banno2000: For this, you’ll need to create a child theme. You can find more details on creating child theme HERE. You can override the category heading with the following code. Add the following code into the child theme’s
functions.phpadd_filter( 'get_the_archive_title', function ( $title ) { if( is_category() ) { $title = single_cat_title( 'Put your text here: ', false ); } return $title; });Regards,
MaheshMahesh
Participant@dschwartzer: Glad to know you’ve solved the issue. Thank you for your appreciation. Have a nice day!
Regards,
MaheshMahesh
Participant@m-mommers: Are you using any pluigns? If so try disabling theme one by one check if that resolves the issue. From when did this issue occur? From post titled Heggenmus, all contents are displaying fine.
Regards,
MaheshMahesh
Participant@banno2000:
1. This has been answered in your previous post.
https://catchthemes.com/support-forum/topic/remove-author-and-date-at-top-of-posts/#post-110527And for other two changes you’ve mentioned above, you’ll need to customize the theme further.
Regards,
MaheshMahesh
Participant@banno2000: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
/* Hide author and date on the top */ #main .entry-header .entry-meta { display: none; }And for disabling comments, go to edit post, click on Screen Options on the top right just beside Help. Some options will slide down. Check on Discussion checkbox. Then scroll down below the content and uncheck Allow Comments checkbox then click Update.
Please repeat the process of unchecking Allow Comments checkbox for the posts. Hope this helps.Regards,
MaheshMahesh
Participant@banno2000: Yes, this can be done. Go to Dashboard=> Appearance=> Menu and add the sub categories into the menu and drag it as sub menu and save the menu. No coding required. Just drag and drop. Let me know if any problem.
Regards,
MaheshMahesh
Participant@cjdodaro: This is a repeat post, so I’ll skip this one. Please refer to the link below:
https://catchthemes.com/support-forum/topic/disable-infinite-scrolling-in-my-catch-box-theme/#post-110520Regards,
MaheshMahesh
Participant@omenicus: Please post in your site url. What seems to be the problem? Have you tried deactivating the plugins? Please try so and let me know further.
Regards,
MaheshMahesh
Participant@joshuacgibson: Please post in your site url.
Regards,
MaheshMahesh
Participant@cjdodaro: Seems you are using Jetpack plugin and infinite scroll is enabled. Please disable the infinite scroll from jetpack’s setting and you’ll be good to go.
Regards,
MaheshMahesh
Participant@clive: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
#sidebar-header-right { display: none; }Regards,
MaheshFebruary 23, 2017 at 9:59 am in reply to: Adjust partial backgroundcolor, footercolor and logo size #110517Mahesh
Participant@nico: If you mean the background color, this feature is included in Free version, go to Dashboard=> Appearance=> Customize=> Background Image and change the Background Color. Make sure you’ve removed the Background Image.
Footer color options is available in Pro version. I recommend you to upgrade to Pro.
For logo a bit bitter after scrolling, go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:.is-sticky .site-logo img { max-height: 80px; }Regards,
Mahesh -
AuthorPosts
