Forum Replies Created

Viewing 20 posts - 4,401 through 4,420 (of 4,916 total)
  • Author
    Posts
  • in reply to: Center website #85547
    Mahesh
    Participant

    Hi @catchemall,

    Do you mean boxed layout? Catch Adaptive is a full width layout theme. If you want boxed layout, I recommend you to use our other themes with boxed layout. Boxed layout themes:
    1. Catch Box
    2. Catch Responsive
    3. Catch Base
    4. Catch Kathmandu
    5. Simple Catch

    Regards,
    Mahesh

    in reply to: Catch Box doesn't look the same on Firefox and Chrome #85544
    Mahesh
    Participant

    Hi spespam,

    This can be done with Custom CSS. Go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS.

    body, input, textarea {
        font-family: Arial;
    }

    Regards,
    Mahesh

    in reply to: Homepage not showing on 3.2 upgrade #85543
    Mahesh
    Participant

    Hi @micky1982,

    In your theme, there is frontpage set to latest post, you have to change it to static homepage. Go to “Dashboard=> Appearance=> Customize=> Static Front Page” and select A static display then select page you want to display as Home page in Front Page and page you want to display blog posts in Post Page then click same.
    Let me know if this fixes the issue.

    Regards,
    Mahesh

    in reply to: Featured slider width to match content area #85538
    Mahesh
    Participant

    Hi @wyanco,

    Add the following CSS, this will fix the issue for horizontal transition.

    #feature-slider .wrapper {
        overflow: hidden;
    }

    Regards,
    Mahesh

    in reply to: catch base archive leads to main page #85534
    Mahesh
    Participant

    Hi @mehlem,

    Now the month in archive spells for example Februar, may be this is how it spells on your language for February. Is it? or have you managed to change it?

    Regards,
    Mahesh

    in reply to: catch base archive leads to main page #85490
    Mahesh
    Participant

    Hi @mehlem,

    I just want to make sure that you’re using Yoast SEO plugin or not first.
    The solution is, go to “Dashboard=> SEO=> Title & Metas=> Archives” then in “Duplicate content prevention” section uncheck “Disable the date-based archives” option and click “Save Changes”.

    Regards,
    Mahesh

    in reply to: Primary Menu issue in Catch Responsive Pro #85486
    Mahesh
    Participant

    Hi @licensessfcpl-com,

    Thank you for your appreciation.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: Site giving 500 error after update #85474
    Mahesh
    Participant

    Hi @elvis,

    Yes, the update is working fine. The latest version is 4.3.3. No such issues, may be some problem/breakage during updates.
    Let me know if the problem persists.

    Regards,
    Mahesh

    in reply to: How to keep right sidebar static? #85472
    Mahesh
    Participant

    Hi @americaontwowheels,

    The issue is because of the Custom CSS. You’ve changed width of .site to 1079px. The default width is 1200px.

    Regards,
    Mahesh

    in reply to: Footer Addition #85470
    Mahesh
    Participant

    Hi @husker,

    I don’t quite get you what you meant. Can you please describe further. For CSS you can use theme’s Custom CSS box.

    Regards,
    Mahesh

    in reply to: Featured slider width to match content area #85469
    Mahesh
    Participant

    Hi @Wynaco,

    For the above you’ll need little customization. First create a child theme. You can find more on creating child theme HERE. Then in your child theme’s functions.php add the following codes.

    function cleanbox_child_move_slider_below_site_title(){
        remove_action( 'clean_box_header', 'clean_box_featured_slider', 30 );
    
        add_action( 'clean_box_header', 'clean_box_featured_slider', 110 );
    }
    add_action('init', 'cleanbox_child_move_slider_below_site_title');

    This will move, Featured Slider below the Site Title and above Featured Content.

    Then for making Featured Slider same as the content, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.

    #feature-slider .wrapper {
        width: 1200px;
    }
    @media screen and (max-width: 1280px) {
        #feature-slider .wrapper  {
            width: 1140px;
        }
    }
    
    @media screen and (max-width: 1152px) {
        #feature-slider .wrapper {
            width: 1038px;
        }
    }
    
    @media screen and (max-width: 1100px) {
        #feature-slider .wrapper {
            width: 960px;
        }
    }
    
    @media screen and (max-width: 990px) {
        #feature-slider .wrapper {
            width: 738px;
        }
    }
    
    @media screen and (max-width: 767px) {
        #feature-slider .wrapper {
            width: 660px;
        }
    }
    
    @media screen and (max-width: 700px) {
        #feature-slider .wrapper {
            width: 561px;
        }
    }
    
    @media screen and (max-width: 600px) {
        #feature-slider .wrapper {
            width: 522px;
        }
    }
    
    @media screen and (max-width: 540px) {
        #feature-slider .wrapper {
            width: 462px;
        }
    }
    
    @media screen and (max-width: 480px) {
        #feature-slider .wrapper {
            width: 380px;
        }
    }
    
    @media screen and (max-width: 400px) {
        #feature-slider .wrapper {
            width: 320px;
            padding: 0;
        }
    }
    
    #feature-slider {
        margin-top: 0;
    }
    
    #featured-content {
        padding-top: 20px;
    }

    Regards,
    Mahesh

    in reply to: 4-columns becomes 3-columns when screen widens #85465
    Mahesh
    Participant

    Hi @Wynaco,

    It seems to be a little bug in theme’s style, for now you can use some Custom CSS. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.

    @media screen and (min-width: 1160px) {
        #featured-content.layout-four .hentry {
            width: 25%;
        }
    }

    The issue will be fixed in next update.

    Regards,
    Mahesh

    in reply to: catch base archive leads to main page #85461
    Mahesh
    Participant

    Hi @mehlem,

    One of the plugins you’ve installed may have caused the problem. Please try disabling the plugins one by one and check if the issue disappears on not.
    Are you using Yoast SEO plugin?
    Let me know if the problem persist.

    Regards,
    Mahesh

    in reply to: Remove section name from header #85457
    Mahesh
    Participant

    Hi @yogawithagnes,

    Go to “Dashboard=> Appearance=> Customization=> Theme Options=> Customs CSS” box and add the following CSS. Use one of the following as required for you.
    1.Hides page title in your entire site(all pages)

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

    2. If you want to hide the page title for that particular page(schedule page)

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

    Regards,
    Mahesh

    in reply to: Homepage not showing on 3.2 upgrade #85456
    Mahesh
    Participant

    Hi @micky1982,

    Just checked your site, seems you have made a lot of customization and modified theme’s core files. Changing the theme’s core files will cause lost all modification during theme updates. This is recommended to use child theme for customization.
    You’ll need to do all the changes you’ve done in your current working theme version. I recommend you to create child theme. You can find more on creating child theme HERE.
    Let me know if any problems.

    Regards,
    Mahesh

    in reply to: Can't find Slider Options #85454
    Mahesh
    Participant

    Hi @lucapresidente,

    It seems to be working fine on our server.
    The option hiding and showing in the customizer is a bit tricky. The selected option should match the page that is currently displayed on the right side. For example if you have selected Homepage/Frontpage in Slider enable on option, you must have home page displayed in the right side or else the options won’t be displayed.
    I hope you understand.

    Regards,
    Mahesh

    in reply to: Primary Menu issue in Catch Responsive Pro #85453
    Mahesh
    Participant

    Hi @Jason,

    The issue was because of the Catch Web Tools plugin not the Catch Responsive Pro theme. The was a little bug in the plugin. The issue has been fixed in Catch Web Tools 1.5.2. Please update and this will be fixed.

    Regards,
    Mahesh

    in reply to: Catch Box doesn't look the same on Firefox and Chrome #85451
    Mahesh
    Participant

    Hi @spespan,

    It seems it to be the system’s font issue. Have you tried it with other system (without helvetica bold font installed). The theme uses these fonts(“Helvetica Neue”,Helvetica,Arial,sans-serif) in sequence. If one is not found it will fall back to next and if none of the fonts found, it falls back to sans-serif. In your system as you’ve installed Helvetica bold, the theme will use Helvetica bold font by default. If you check other sites with Helvetica font it will display the same font(bold). Either you have install Helvetica regular font or remove Helvetica bold font, and the default font falls back to Arial.

    Regards,
    Mahesh

    in reply to: vCard #85450
    Mahesh
    Participant

    Hi @Edward,

    Yes this can be done, you can either upload the file in WordPress installation directory/wp-content/uploads or other folder(within WordPress installation) or you can upload it to your site’s root directory. For this you’ll need to contact your server for support.

    Regards,
    Mahesh

    in reply to: Search Box Presentation Error #85448
    Mahesh
    Participant

    Hi @alhaarth,

    Yes it does result in performance loss to some extent. And yes there has been a lot of changes in CatchBox, recenty the theme has been made accessibility ready too. You can check the changelogs for details. It seems, after CSS minification some styles (i.e. the search icon style) could be recognized by the browser and causing the problem. I checked with firebug tool and the genericons style for the button is not showing up.
    Let me know further.

    Regards,
    Mahesh

Viewing 20 posts - 4,401 through 4,420 (of 4,916 total)