Forum Replies Created

Viewing 20 posts - 1 through 20 (of 176 total)
  • Author
    Posts
  • in reply to: Media queries & Hamburger Menu #341086
    minal
    Keymaster

    Hello @catwingz:

    To emulate the desired transition, it will be challenging to replicate the same code from the theme for mobile menus and hamburger because it might have a separate HTML structure, JS, and CSS from your site.

    Sincerely,

    Minal

    in reply to: More control of Header needed #341082
    minal
    Keymaster

    Hello @catwingz:

    Unfortunately, the theme does not provide built-in options to change the background color or header height directly. However, you can achieve this by adding custom CSS.

    Below is a CSS snippet you can use to change the background color of the header banner:

    .custom-header:after {
         background: rgba(0, 0, 0, 0.1);
    }
    

    To add CSS , Go to Dashboard > Appearance > Customizer > Additional CSS.

    You can modify the rgba value to your preferred color. The last value (0.1) controls the transparency — increasing it will make the background darker, while decreasing it will make it more transparent.

    Regarding the header height, it is dynamically generated to ensure that the header image fits the window height. As a result, parts of the image may appear cropped.

    Sincerely,
    Minal

    in reply to: Can one make the Header video play on mobile? #341081
    minal
    Keymaster

    Hello @bjelkeman:

    Please kindly use our Header Enhancement plugin, which will allow the video to play on mobile as well.

    Here is the link to the plugin:
    https://wordpress.org/plugins/header-enhancement/

    Let us know if this helped you.

    Sincerely,

    Minal

    in reply to: Woocommerce Produt page options drop down #340916
    minal
    Keymaster

    Hello @A:

    Sorry for the confusion,

    Follow those steps as shown on screenshots below,

    edit-site
    additional-css

    There, you will find an additional CSS section to add your CSS.

    Sincerely,

    Minal

    minal
    Keymaster

    Hello @Anton:

    Sure you can make it smaller.

    Add the below given CSS snippets to your additional CSS.

    #content.site-content {
      padding-top: 0;
    }
    
    .site-content > .wrapper {
      padding-top: 0;
    }
    
    

    You can check and add your desired value to those CSS of your liking.
    Sincerely,
    Minal

    minal
    Keymaster

    Hello @anton:

    To remove space between the main menu and the section below, add the CSS snippets below to your additional CSS.

    Go to Dashboard > Appearance > Customizer > Additional CSS.

    .site-content .wrapper .content-area .site-main {
       margin-top: 0 !important;
    }
    

    I hope it works for you.

    Sincerely,

    Minal

    in reply to: PHP Version #340642
    minal
    Keymaster

    Hello @bauptstadtblick:

    Catch Responsive is compatible with PHP. Our systems are currently running PHP version 8.3, and we have not encountered any compatibility issues or unexpected behavior during development or deployment.

    If you encounter any issues, please don’t hesitate to let us know..

    Sincerely,

    Minal

    in reply to: H1 does show up in slider and featured content #340639
    minal
    Keymaster

    Hello @jeroen:

    Sorry for the inconvenience caused.

    It might be caused due to plugin conflict. So please try temporarily disabling all plugins to see if the error persists. If the issue is resolved, you can re-enable the plugins one by one to identify the cause.

    And also try to update the content of your pages.

    Sincerely,

    Minal

    in reply to: Catchbase and PHP #340636
    minal
    Keymaster

    Hello @Andreas:

    We have checked on our end, which has a PHP 8.3 version and WordPress 6.8.2, and everything seems fine.

    The “Internal Server Error (500)” may be related to server configuration or a plugin conflict. We recommend reaching out to your web hosting provider, as they may be able to assist you in identifying and resolving the issue.

    Additionally, please try temporarily disabling all plugins to see if the error persists. If the issue is resolved, you can re-enable the plugins one by one to identify the cause.

    Sincerely,

    Minal

    minal
    Keymaster

    Hello @cindy:

    Here are the CSS snippets for the search to appear on mobile devices. And add to your Additonal CSS .

    Go To Dashboard > Appearance > Customizer > Additional CSS.

    
    
    @media screen and (max-width: 990px) {
     .site-navigation.nav-primary {
        background-color: transparent;
        display: block;
        position: absolute !important;
        right: 0;
        top: 0;
        width: 260px;
     }
    
     .mobile-menu-two .site-navigation.nav-primary{
        right:50px;
     }
    
     .site-navigation.nav-primary #search-toggle {
        color: #000;
     }
    
     .site-navigation.nav-primary #search-container {
        left: -10px;
        bottom: -66px;
     }
    
     .admin-bar .site-navigation.nav-primary #search-toggle {
        margin-top: 45px;
     }
     .site-navigation.nav-primary .search-field {
        height: 40px;
     }
    
     .site-navigation.nav-primary .search-form {
        padding-inline: 20px;
     }
    
     .site-navigation.nav-primary .catchresponsive-nav-menu {
        display: none;
     }
    }
    
    

    This CSS displays the search on top of the header.

    Please feel free if you need any further assistance.

    Sincerely,
    Minal

    in reply to: Wierd WordPress messaage on Catch Responsive Pro #340587
    minal
    Keymaster

    Hello @cindy:

    We have updated the site from version 5.1.1 (June 16) to 5.1.2 (July 6).

    In this update, we’ve added separate icons for X (formerly Twitter). While this is not a major update. We’re actively working on introducing more features in upcoming releases.

    Thank you for your continued support and patience.

    Sincerely,

    Minal

    minal
    Keymaster

    Hello @Rashaim:

    Yes, it was a bug. The CSS we provided was just a quick fix. We’ve already resolved the issue in our theme, and you will receive a notification once the update is available.

    Sincerely,

    Minal

    minal
    Keymaster

    Hello @Rashaim:

    Try adding the below CSS snippets to your additional CSS

    go to Dashboard > Appearance > Editor > Templates > Front Page

    Check the screenshot below
    additional-css

    
    .woocommerce div.product form.cart table.variations td select {
      filter: invert(1);
      border-color: #d0d0d0;
    }
    

    Hope it works for you !!

    Sincerely,

    Minal

    in reply to: Catch Responsive Version: 3.1.1 #340483
    minal
    Keymaster

    Hello @Randy:

    Our theme includes Font Awesome version 6.7.2, which Elementor may not fully support at this time. As a result, you might notice certain icons not displaying correctly when using Elementor widgets.

    To resolve this, you can add the following CSS

    on you Additional CSS.

    Go to Dashboard > Appearance > Customizer > Additional CSS.

    
    
    .fa-x-twitter:before {
      content: "\f099";
    }
    
    #feature-slider .cycle-prev::before,
    #feature-slider .cycle-next::before,
    #logo-section .cycle-prev::before,
    #logo-section .cycle-next::before,
    #to_top_scrollup,
    #scrollup,
    .posted-on a::before,
    .byline a::before,
    .cat-links span+a::before,
    .tags-links span+a::before,
    .comments-link a::before,
    .edit-link a::before,
    .fa-solid:before,
    .fa-brands:before {
      font-family: "FontAwesome" !important;
    }
    
    .site .widget_catchresponsive_social_icons a.font-awesome {
      height: 32px;
      width: 32px;
      box-sizing: border-box;
      align-items: center;
      justify-content: center;
    }
    

    Hope it works for you

    Sincerely,

    Minal

     

    in reply to: Very urgent problem with slide module #340236
    minal
    Keymaster

    Hello @staipa:

    We apologize for any inconvenience caused.

    Following a recent update to the FSE Pro plugin, the autoplay feature on your slider may have been disabled. To restore the automatic slide transitions, please re-enable the autoplay setting.

    Sincerely,

    Minal

    in reply to: Bying the latest version of Catch Evolution Pro #340190
    minal
    Keymaster

    Hello @hschwind:

    You can purchase the Catch Evolution Pro Theme from https://catchthemes.com/themes/catch-evolution-pro/. Once the purchase is complete, you can download the theme’s ZIP file from your account at https://catchthemes.com/my-account/.

    To install the theme on your WordPress site, follow these steps:

    Log in to your WordPress dashboard.

    Navigate to Appearance > Themes > Add New > Upload Theme.

    Upload the ZIP file and click Install Now, then activate the theme.

    If you need guidance on how to purchase the theme, please refer to https://catchthemes.com/frequently-asked-questions/#question-update-1 for step-by-step instructions.

    Sincerely,

    Minal

    in reply to: Cath Responsivre pro #340176
    minal
    Keymaster

    Hello @alfa:

    To add a logo next to the title.

    Go to Dashboard > Appearance > Customizer > Site Identity, where you can add a logo.

    site-title

    Please let us know if everything works as expected.

    Sincerely,

    Minal

    in reply to: How to edit theme with elementor #340143
    minal
    Keymaster

    Hello @sculptderma:

     

    Sure you can edit the site title.

    First, go to Dashboard > Appearance > Editor > Patterns > All Template Parts.

    and find which parts you want to edit. Check the screenshot below.

    header-parts

     

    Sincerely,
    Minal

    in reply to: How to edit theme with elementor #340140
    minal
    Keymaster

    Hello @sculptderma:

    Good to know that it works for you.

    You have to reset the front page to undo all deleted parts to show and then do the same step as earlier.

    reset

    If you want the header part, you can simply delete the other blocks except the header.

    and add the content block just below the header parts

    Sincerely,

    Minal

    in reply to: How to edit theme with elementor #340138
    minal
    Keymaster

    Hello @sculpderma:

    Have you tried going to the homepage after removing existing blocks, adding a content block, and saving the page?

    Can you share your screenshot so I can provide the exact solution?

    Sincerely,

    Minal

Viewing 20 posts - 1 through 20 (of 176 total)