Forum Replies Created

Viewing 20 posts - 2,041 through 2,060 (of 4,888 total)
  • Author
    Posts
  • in reply to: Slider Home page #104908
    Mahesh
    Member

    @jeffersonxavier_rcc: Checked your site, it seems fine. If the image seems too big, try using a small image.

    Regards,
    Mahesh

    in reply to: Problem with responsive menu #104906
    Mahesh
    Member

    @jorgecsanz: Please use the following CSS:

    .sidr {
        background-color: #fff;
    }
      
    .sidr ul li a, .sidr ul li span {
        color: #000;
    }

    between the menu there is less separation
    Do you want to increase the separation or remove it?

    Regards,
    Mahesh

    in reply to: Background lost after WP Update? #104905
    Mahesh
    Member

    @mzhd: Try disabling the plugins and check if it resolves the issue. For some reasons, the image url is not correct which is causing the problem.
    correct: http://www.mzhd.de/wp-content/themes/catch-responsive/images/body-bg.jpg
    current: //www.mzhd.de///www.mzhd.de/wp-content/themes/catch-responsive/images/body-bg.jpg
    We successfully update the WordPress version and no such issue occurred.

    Regards,
    Mahesh

    in reply to: Whats new in version 3.2 #104903
    Mahesh
    Member

    @tinus53: You can check the changelog.txt in the theme. Or check the link below:
    https://catchthemes.com/changelogs/catch-flames-theme/

    Regards,
    Mahesh

    in reply to: Flash of unstyled content #104897
    Mahesh
    Member

    @skynet: Seems like a plugin issue.

    Regards,
    Mahesh

    in reply to: How to move my up button above? #104896
    Mahesh
    Member

    @skynet: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Fabulous Fluid #104894
    Mahesh
    Member

    @roman06: Please try changing the featured pages. And let me know if the problem persists.
    For hiding post data and user, add the following CSS:

    #main .entry-meta {
    	display: none;
    }

    Regards,
    Mahesh

    in reply to: Clean Journal Theme optimal image size #104892
    Mahesh
    Member

    @yogawithagnes: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: logo and banner overlap on mobile devices #104890
    Mahesh
    Member

    @floh: Thank you for your appreciation. Have a nice holiday to you too! 🙂

    Regards,
    Mahesh

    in reply to: Pages menu does not appear on mobile #104889
    Mahesh
    Member

    @jeffersonxavier_rcc: Thank you for you appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Flash of unstyled content #104887
    Mahesh
    Member

    @skynet: I just checked your site and yes got what your problem is. This seems to be because of loading the CSS that needed fraction of second – milliseconds. And once it loads, the site seems fine. Have you tried the plugin with WordPress core themes too, and how it seems. Let me know further.

    Regards,
    Mahesh

    in reply to: Comments closed #104886
    Mahesh
    Member

    @mseise: Go to Post edit page, and on the right top, you’ll see Screen Options – Click it and so options will slide down. Check the Comments checkbox then scroll down below content, you’ll see Discussion tab, make sure Allow comments is unchecked.

    Regards,
    Mahesh

    in reply to: Featured Content Section #104885
    Mahesh
    Member

    @kriskyria: Please post in your site url.

    Regards,
    Mahesh

    Mahesh
    Member

    @chirsdug: For this, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s functions.php, add the following codes:

    if ( ! function_exists( 'catchresponsive_child_polylang_invalidcache' ) ) :
    /**
     * Template for Clearing Polylang Invalid Cache
     *
     */
    function catchresponsive_child_polylang_invalidcache() {
    	delete_transient( 'catchresponsive_promotion_headline' );
    	delete_transient( 'catchresponsive_featured_content' );
    	delete_transient( 'catchresponsive_featured_slider' );
    } // catchresponsive_child_polylang_invalidcache
    endif;
    add_action( 'after_setup_theme', 'catchresponsive_child_polylang_invalidcache' );

    This function is for Promotion Headline for custom language, with give you option to put the desired text for the translation.

    function catchresponsive_child_polylang() {
    	if ( function_exists( 'pll_register_string' ) ) {
    		$options 	= catchresponsive_get_theme_options();
    
    		$promotion_headline        = $options['promotion_headline'];
    		$promotion_subheadline     = $options['promotion_subheadline'];
    		$promotion_headline_button = $options['promotion_headline_button'];
    		$headline                  = $options ['featured_content_headline'];
    		$subheadline               = $options ['featured_content_subheadline'];
    
    		pll_register_string( 'featured_content_headline', $headline );
    		pll_register_string( 'featured_content_subheadline', $subheadline );
    		pll_register_string( 'promotion_headline', $promotion_headline );
    		pll_register_string( 'promotion_subheadline', $promotion_subheadline );
    		pll_register_string( 'promotion_headline_button', $promotion_headline_button );
    	}
    }
    add_action ( 'admin_init', 'catchresponsive_child_polylang' );

    Regards,
    Mahesh

    in reply to: Slider Home page #104877
    Mahesh
    Member

    @jeffersonxavier_rcc: The theme is fully responsive and the slider does diminish and expand according to the screen size. Am I getting you correct? Let me know further.

    Regards,
    Mahesh

    in reply to: Problem with responsive menu #104874
    Mahesh
    Member

    @jorgecsanz: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    .sidr {
        background-color: rgb(51, 51, 51);
    }

    Regards,
    Mahesh

    in reply to: Pages menu does not appear on mobile #104790
    Mahesh
    Member

    @jeffersonxavier_rcc: Go to Dashboard=> Appearance=> Customize=> Additional CSS and add the following CSS:

    #masthead {
        min-height: 88px;
    }

    Regards,
    Mahesh

    in reply to: I need some modifications #104788
    Mahesh
    Member

    @jorgecsanz: Please add the following CSS:

    #access-secondary {
        background-color: #fff;
    }

    Regards,
    Mahesh

    in reply to: Catchbase Pro Update to 3.8 #104786
    Mahesh
    Member

    @mwstichel: Yes, you can update without any doubt. All setting will be preserved as they are. But if you have customized the theme core files, those will be lost. Settings won’t be affected.

    Regards,
    Mahesh

    in reply to: logo and banner overlap on mobile devices #104785
    Mahesh
    Member

    @floh: Do you mean to change banner image on mobile devices only? Add the following CSS:

    @media screen and (max-width: 767px) {
        #masthead {
            background-image: url("YOUR_IMAGE_URL");
        }
    }

    Note: Please replace YOUR_IMAGE_URL in the above code with the image you want.

    Regards,
    Mahesh

Viewing 20 posts - 2,041 through 2,060 (of 4,888 total)