Forum Replies Created
-
AuthorPosts
-
Mahesh
ParticipantHi @marga,
Buying a pro version, you have to create a child theme, copying previous child theme and and making some changes in its
style.css
will work. Such as Theme Name, Template and the folder name too. And you do not need to upload media or pictures again.Regards,
MaheshJanuary 27, 2016 at 5:06 pm in reply to: Change space between Blog title and blog text in the blog list view #83883Mahesh
ParticipantGo to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS.
#content .post .entry-header { margin-bottom: 0; }
Regards,
MaheshMahesh
ParticipantHi @Marcus,
This seems to be the problem with the server. Please contact the server for the issue.
Let me know if it fixes your issue.Regards,
MaheshMahesh
ParticipantHi @Carina,
1. Removing blog posts from front page.
For this change you have to create a child theme. You can find more details on creating child theme HERE. Then in child theme create a fileindex.php
and add the following codes and save it.<?php /** * The main template file. * * This is the most generic template file in a WordPress theme * and one of the two required files for a theme (the other being style.css). * It is used to display a page when nothing more specific matches a query. * E.g., it puts together the home page when no home.php file exists. * * @package Catch Themes * @subpackage Catch Responsive * @since Catch Responsive 1.0 */ get_header(); get_footer(); ?>
2. Changing Home to another language.
Go to Dashboard=> Appearance=> Menus” and change Home label to another language home text manually.3. Changing footer color to black with white text.
Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.#site-generator { background-color: none repeat scroll 0 0 #000; color: #fff; }
Regards,
MaheshMahesh
ParticipantHi @andrewf90,
Go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS:
@media screen and ( max-width: 940px ) { #logo-wrap { margin: 0 auto; float: none; display: block; } }
Regards,
MaheshMahesh
ParticipantHi @Tiffini,
Please check the uploads folder’s permission. And check the files in the uploads folder exists. The update was the minor update and should not affect the files. Try checking again disabling the plugins.
Let me know further if the problem persists.
Regards,
MaheshMahesh
ParticipantMahesh
ParticipantHi @shawn,
Thank you for your appreciation.
Have a nice day!Regards,
MaheshJanuary 27, 2016 at 12:04 pm in reply to: Remove borders around the content boxes and widgets and narrow sidebar #83863Mahesh
ParticipantHi @towerlexa,
Thank you very much.
Yes, its Nepal. We welcome you here.
Have a nice day!Regards,
MaheshMahesh
ParticipantMahesh
ParticipantHi @pal_coche,
I am afraid its not possible with Custom CSS. You need to do it creating child theme and add the above code in child theme’s
functions.php
.
Sorry I forgot to put the link to the detail page on creating child theme. Please visit this LINK.Regards,
MaheshMahesh
ParticipantTo decrease opacity, you have to decrease the last value i.e. 1 in the above CSS code. Range (0 to 1). Replace above with the following.
The code adds up drop shadow to slider as well.#main article.post, #main-slider {
-webkit-box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
-moz-box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}Note:
box-shadow: h-shadow v-shadow blur-distance spread rgba( red, green, blue, opacity );Hope this clarifies you.
Regards,
MaheshMahesh
ParticipantHi @eggbanana,
This is beyond the theme support scope. You need to either hire a customizer or contact the plugin support.
Regards,
MaheshMahesh
ParticipantHi @Raielene,
In Catch Kathmandu Free Version, you can only put the post images in the slider, and the link by default points to its relative post. In Catch Kathmandu Pro Version, you have other features in slider image such as post, page, category or custom image (with custom link). I recommend you to upgrade to Pro version.
Regards,
MaheshMahesh
ParticipantHi @pal_coche,
Assuming you are trying to display the header image in Blog Post Page ONLY.
For the above, you’ve to create child theme, you can find more details on creating child theme HERE. Then in child theme’s functions.php, add the following codes./** * Display header image in blog page only * */ function catchbase_featured_overall_image() { if ( is_home() ) { catchbase_featured_image(); } }
Note: This will override the header image function of the Main theme and will display the header image on blog page only. Adding this function, Enable Featured Header Image on in Header Image of customizer won’t work as it is being overridden.
Regards,
MaheshMahesh
ParticipantHi @Kim,
I’ve checked your site. The site is running with Catch Flames Pro 3.3. What seems to look different? Can you clarify it more with image (if possible). The Captcha is displaying at the footer.
Regards,
MaheshMahesh
ParticipantHi @gfde,
Thank you for using Catch Base Pro.
The image you are seeing is the Demo Slider. To change the slider, go to “Dashboard=> Appearance=> Customize=> Featured Slider”. In Catch Base Pro, you have five different Slider Type options:
1. Demo Slider (Displays Demo Slider)
2. Page Slider (Displays selected page in slider. Select Page)
3. Post Slider (Displays selected post in slider. Select Post ID)
4. Image Slider (Displays selected image in slider. Upload Image)
5. Category Slider (Displays selected category’s post in slider. Select Category)
Choose one of the above option from drop-down in Select Slider Type and the choose number of sliders.
The Slider options varies as per the Slider Type selected.Hope this helps you.
Regards,
MaheshMahesh
ParticipantHi @ni_kiwi,
No there is no such feature in Catch Responsive or Catch Responsive Pro. You can achieve it with Custom CSS. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.
.sidr ul li a, .sidr ul li span { text-align: right; }
Regards,
Mahesh -
AuthorPosts