Forum Replies Created

Viewing 20 posts - 1,521 through 1,540 (of 2,016 total)
  • Author
    Posts
  • in reply to: increase menu width in desktop mode #90839
    Pratik
    Participant

    Hi @Mupa,
    To increase the width at that resolution, use following CSS Code:

    
    @media screen and (max-width: 1280px) {
    	#fixed-header .wrapper {
        width: 1135px;
      }
    }
    

    Second option is to show mobile menu early as you said. Currently when width goes below 991px, mobile menu appears. So we can make it so that then width goes below 1281px, mobile menu appears. To achieve this, use following code:

    
    @media screen and (max-width: 1280px) {
      .mobile-menu-anchor {
        display: inline-block;
      }
      
      .nav-primary .menu {
        display: none;
      }
    }
    

    Let me know how it goes.

    Regards,
    Pratik

    Pratik
    Participant

    Note: This will change the size of Slider image if Full Width Slider is used too.

    Pratik
    Participant

    Hi @Markus,

    If that is the case, then you need to do a bit of customization via child theme. For that , first Create a child theme. Details for child theme are here.

    Then in your child theme’s functions.php add the following codes.

    
    function catchflames_child_manage_image_size() {
        remove_image_size( 'featured-slider-full' );
        add_image_size( 'featured-slider-full', 1600, 400, true );
    }
    add_action( 'init', 'catchflames_child_manage_image_size' );
    

    Then use Regenerate Thumbnails plugin once to generate thubmnails. You can visit this link for the plugin: https://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Pratik

    in reply to: Featured Content #90836
    Pratik
    Participant

    Hi @Sunshine,
    Thank you for upgrading to Pro version. I checked your site and it looks like you have added Posts as featured content. Do you need further help on this?

    in reply to: Primary menu issue: Menu text outta screen area #90835
    Pratik
    Participant

    Hi @knudkp,
    There are a few workarounds that you can use for this issue.

    1. Do not make this type of menu last item. It will be easy just to push this menu item as second to last or third to last item.

    2. You can push the sub menu to the left rather than right. For this, use following CSS code in Appearance=> Customize=> Theme Options=> Custom CSS box:

    
    .catchbase-nav-menu #menu-item-2072 .sub-menu .sub-menu {
        margin: -43px 0 0 -249px;
    }
    

    Let me know how it goes.

    Regards,
    Pratik

    in reply to: How to delete header images… #90791
    Pratik
    Participant

    Great the issue is solved.

    Pratik
    Participant

    Hi @Markus,
    Can you go to Appearance=> Customize=> Header Image and under Page/Post Featured Image Size select Full Width Slider Image. This should keep the image size of the page post featured image as header image.

    Let me know how it works.

    Regards,
    Pratik

    in reply to: Removal of the name from "posted on.."? #90789
    Pratik
    Participant

    Hi @Markus,
    To remove only name, use following CSS code in Appearance=> Customize=> Theme Options=> Custom CSS

    
    .home .hentry .entry-meta .by-author {
        display: none;
    }
    

    I do not think German Translation file is available for Catch Flames Pro. To translate those texts, you need to add German language file de_DE.po which you can get by renaming the catch-flames.pot file in languages folder.
    Then, just open that file from free software from http://poedit.net/ and check for Posted on, change that and save it. It should work. You can also add other translations there as well.
    You can send us the translated .po file and we will add it in our theme with you as a contributor for the translation.

    Once the update is available, you can checkout the changelog and update the theme.
    Changelog: https://catchthemes.com/changelogs/catch-flames-pro-theme/

    Follow the process in this video to upgrade:
    https://www.youtube.com/watch?v=W95SuabDZi8

    Regards,
    Pratik

    in reply to: Error in footer #90785
    Pratik
    Participant

    Hi @wouwonlinw,
    There is no footer issue in theour demos at WP.org and our site https://wp-themes.com/clean-box/ and https://catchthemes.com/demo/clean-box
    Can you activate the main theme and see what happens? However, sometimes it may render same thing due to WordPress transients(caching).
    Also, it will be better if I could view the child theme’s functions file. Could you post its contents on pastebin.com and share the link.

    Regards,
    Pratik

    in reply to: Live Preview #90765
    Pratik
    Participant

    Hi @Meinhard,
    Can you check out this blog post and fill the form in the same blog post with admin credentials and ftp if possilbe if problem persists.
    Regards,
    Pratik

    in reply to: How to delete header images… #90745
    Pratik
    Participant

    Hi @overeasy,
    To remove header image, follow these steps:
    1. Goto Dashboard=> Appearance=> Header Image
    2. Under Current Header, there is a Hide Image Option, just click it
    3. Click on Save & Publish button on top of customizer

    Let me know if you have any trouble.

    Regards,
    Pratik

    Pratik
    Participant
    Pratik
    Participant

    Hi @lealevy,
    You are using free version of Catch Responsive. Free version only supports Featured Page Content. If you want to highlight your posts, then you will need to upgrade to Catch Responsive Pro version. Pro version provides other features as well, more details here.

    To highlight your pages in Featured Content, please follow the instructions described here

    Regards,
    Pratik

    in reply to: Featured Content #90742
    Pratik
    Participant

    Hi @Sunshine,
    You are using free version of Clean Box. Free version only supports Featured Page Content. If you want to highlight your posts, then you will need to upgrade to Clean Box Pro version. Pro version provides other features as well, more details here.

    Regards,
    Pratik

    in reply to: Page titles #90343
    Pratik
    Participant

    HI @robert,
    To remove it from all pages, just use the first code block. It will keep the menu alias in main navigation as well.

    
    #main .page header.entry-header{
       display: none;
    }
    

    Let me know if it works or not.

    Regards,
    Pratik

    Pratik
    Participant

    Hi @Mupa,

    The srcset-tag was added in WordPress version 4.4 for responsive images. WordPress has control over it. We, as a theme have no control over it. There might be plugins that can adjust it but it is not recommended.

    Regards,
    Pratik

    in reply to: problems with translations in Pro version #90261
    Pratik
    Participant

    Hi @Mupa,

    We released it in free first so that if there are issues with the pot file, we can rectify it and add it to pro version when the file is stable.
    We will add it in pro version soon.

    Regards,
    Pratik

    in reply to: Can't change site logo #90259
    Pratik
    Participant

    HI @Michael,
    I apologize for the issue but I will need your admin access to check the issue. Can you send it to me via the form at https://catchthemes.com/blog/customizer-not-working-wordpress-update/

    Please add in the support url( https://catchthemes.com/blog/customizer-not-working-wordpress-update/ ) for reference.

    Let me know in this post after you have sent me the details.

    Regards,
    Pratik

    Pratik
    Participant

    Hi @Mupa,

    The aspect ratio of Featured Slider image is 21:9 (1680×720). For image in mobile portrait mode, the same image is scaled but the aspect ratio is maintained because to add another aspect ratio, we would have to add in another image. This would greatly increase the media library size. And to add another image for the portrait mode would be an overkill.

    If you still want it, you can add a different image size using add_image_size() function of WordPress and then hide the larger image in portrait mode and show this image. This will need the loading of both images but only onw will be shown at a time.

    I just gave you a quick idea to show that it is possible but not recommended. If you still want it, you will need to hire a customizer as this involves quite a bit of customization.

    Regards,
    Pratik

    in reply to: picture size of Featured Image Slider doesn't match #90206
    Pratik
    Participant

    Hi @Mupa,

    I apologize but it is difficult to understand the issue. Do you mean the Featured Image Slider image does not scale up as Page slider? If so, then in image slider, the size that is displayed is exactly the size you save. If you put a bigger image in the image slider, it should work.

    Regards,
    Pratik

Viewing 20 posts - 1,521 through 1,540 (of 2,016 total)