Forum Replies Created

Viewing 20 posts - 501 through 520 (of 2,016 total)
  • Author
    Posts
  • in reply to: wordpress child themes #114717
    Pratik
    Participant

    Hi @wplaunch,

    Than you for the suggestion. We have recommended hosting at https://catchthemes.com/wordpress-web-hosting/.

    For site design and development, we specialize in themes and plugins so we try not to focus on custom work. However, in the future, we might do it 🙂

    Regards,
    Pratik

    in reply to: widget inner margin & font size setting #114716
    Pratik
    Participant

    Hi @sumiko,

    For first issue, try following code:

    
    #text-2 {
        padding: 0;
    }
    
    #text-2 .su-row {
        text-align: center;
    }
    

    For second issue, to increase the font size of left content, try following code:

    
    #content {
       font-size: 18px;
    }
    

    You can increase./decrease font-size 18px as desired.

    Regards,
    Pratik

    in reply to: Featured Slider Image not displaying correctly #114689
    Pratik
    Participant

    Hi @technick,

    Clean Business Pro slider uses a full width slider. That is, the image is set as background of the div rather than a different image tag. What this does is not allow the longer images to be viewed fully on mobiles because mobiles are portrait and laptops are landscape. You can check out twentyseventeen default theme, which has same issue.

    There is a mistake in our theme instructions, so I apologize for that, the image size should be 1920×1280. If you try that image, it should solve your problem, although just a bit of image will be cut on mobile view due to background implementation.

    There are a few options you can do,

    1. Try 1920×1280 image size or even longer( nearly 1:1 ratio or 1920×1920)

    2. We can try and focus on a part of image via custom css like center of left or right(currently focused on left)

    3. Best option I can see is using a different theme: Parallax Frame Pro theme. Checkout its demo at https://catchthemes.com/demo/parallax-frame/. You can email sales at https://catchthemes.com/contact-us/ and they should swap out the theme.

    Regards,
    Pratik

    in reply to: site identity customization #114687
    Pratik
    Participant

    Hi @justchance,

    To change the font, goto Appearance-> Customize-> Theme Options-> Font Family Options, there, you should see Site Title Font Family and Site Tagline Font Family.

    For colors, goto Appearance-> Customize-> Color Options-> Header Color Options. There, you will see Site Title Color and Tagline Color.

    Let me know if this is what you wanted.

    Regards,
    Pratik

    in reply to: Featured Images not showing up #114686
    Pratik
    Participant

    Hi @Ken,

    Great you solved it yourself.

    Regards,
    Pratik

    in reply to: Woocommerce 3.0 support & gallery features #114585
    Pratik
    Participant

    Hi @bigoslesli,

    I cannot say 100% sure, but we will need to discuss, add the feature and test it out. May be by the end of this week.

    Regards,
    Pratik

    in reply to: Woocommerce 3.0 support & gallery features #114520
    Pratik
    Participant

    In that case, you need to wait for the theme update. The theme is WooCommerce compatible, this is now deemed as extra feature by woocommerce. We need to test before rolling out the updates.

    Regards,
    Pratik

    in reply to: Woocommerce 3.0 support & gallery features #114518
    Pratik
    Participant

    Hi @bigoslesli,

    The updates in WooCommerce 3.0 will require to add a bit of code to you child theme’s functions.php file. Checkout the support tickets for Woocommerce. E.g: https://wordpress.org/support/topic/product-image-lightbox-not-working-in-version-3-0/

    
    function catchkathmandu_child_woocommerce_support() {
    	add_theme_support( 'wc-product-gallery-zoom' );
    	add_theme_support( 'wc-product-gallery-lightbox' );
    	add_theme_support( 'wc-product-gallery-slider' );
    }
    add_action( 'after_setup_theme', 'catchkathmandu_child_woocommerce_support' );
    

    Let me know how it goes. If this works out, we will add it in next version upgrade.

    Regards,
    Pratik

    in reply to: Vertical Line Throughout my Featured Slider #114517
    Pratik
    Participant

    Hi @tbimom,

    Try following code in Appearance=> Customize=> Additional CSS box:

    
    .featured-img .img-effect {
        background: none;
      }
    

    Let me know how it goes.

    Regards,
    Pratik

    in reply to: Header Highlight Content problem #113734
    Pratik
    Participant

    Hi @Steffen,

    I have sloved the issue and right now, Category Content is selected with Category Blog Selected. It will work now.

    The reason for this was due to a bug in the theme. We had it reported and fixed. Just the update was not released due to testing of the release left.

    Sorry for inconveniences caused. Let me know if there is anything else.

    Regards,
    Pratik

    in reply to: Header Highlight Content problem #113727
    Pratik
    Participant

    I have emailed you again. Please check.

    in reply to: Header Highlight Content problem #113723
    Pratik
    Participant

    I sent you email at [email protected] on 6th april, 3 days ago. Can you check it?

    in reply to: Numbers in front of the summary of our blog #113705
    Pratik
    Participant

    Hi @valeska-conducere,

    There is no image. But, your site loaded and I checked. This looks like a plugin issue. Please follow the post at https://catchthemes.com/wordpress-tutorials/how-to-check-for-plugin-conflicts-with-our-themes/ to find the issue.

    Regards,
    Pratik

    in reply to: Mobile menu Border #113704
    Pratik
    Participant

    Hi @hjhatch,

    Try following code in Appearance=> Customize=> Additional CSS box:

    
    #header-left-menu {
        border: 1px solid #000;
    }
    
    @media screen and (max-width: 990px) {
       .mobile-menu-one #site-branding {
            width: 670px;
        }
    }
    
    @media screen and (max-width: 767px) {
       .mobile-menu-one #site-branding {
           width: 590px;
       }
    }
    
    @media screen and (max-width: 700px) {
       .mobile-menu-one #site-branding {
            width: 490px;
       }
    }
    
        @media screen and (max-width: 600px) {
           .mobile-menu-one #site-branding {
            width: 450px;
        }
    }
    
    @media screen and (max-width: 540px) {
        .mobile-menu-one #site-branding {
            width: 390px;
        }
    }
    
    @media screen and (max-width: 480px) {
        .mobile-menu-one #site-branding {
            width: 320px;
        }
    }
    
    @media screen and (max-width: 400px) {
        .mobile-menu-one #site-branding {
            width: 260px;
        }
    }
    
    @media screen and (max-width: 319px) {
        .mobile-menu-one #site-branding {
            width: 100%;
        }
    }
    

    If this does not work, please post in your site url.

    Regards,
    Pratik

    in reply to: Header Highlight Content problem #113700
    Pratik
    Participant

    Hi @Steffen,

    I need admin details to check. I have sent you and email about 2 day ago. Please reply in that email.

    Regards,
    Pratik

    in reply to: Mobile menu Border #113690
    Pratik
    Participant

    Hi @hjhatch,

    Can you post in your site url?

    Regards,
    Pratik

    in reply to: Numbers in front of the summary of our blog #113633
    Pratik
    Participant

    Hi @valeska-conducere,

    Site gives error, does not load. I need to check site url.

    Regards,
    Pratik

    in reply to: change site-description from single line to double line #113629
    Pratik
    Participant

    Hi @Sumiko-san(Please do not be mad if I got the honorofic wrong),

    Please try following code in Appearance=> Customize=> Additional CSS box:

    
    #site-description {
        width: 200px;
    }
    

    Increase/decrease 200px to increase/decrease the width so that you can increase/decrease the size of site Site Description.

    Regards,
    Pratik

    in reply to: Is it possible not to show Header right menu? #113582
    Pratik
    Participant

    Hi @francesca78,

    I am glad it worked out. If you liked our theme and support, please leave us a review at https://wordpress.org/support/theme/adventurous/reviews/#new-post.

    Regards,
    Pratik

    in reply to: Personalization of clean magazine #113568
    Pratik
    Participant

    Hi @Pascale,

    Theme supports the plugins, but the plugins is not bundled with the theme.

    Regards,
    Pratik

Viewing 20 posts - 501 through 520 (of 2,016 total)