Forum Replies Created

Viewing 20 posts - 4,641 through 4,660 (of 4,916 total)
  • Author
    Posts
  • in reply to: Submenus' Background color #83754
    Mahesh
    Participant

    Hi @[email protected],

    I’m afraid, it is not possible.

    Regards,
    Mahesh

    in reply to: Submenus' Background color #83753
    Mahesh
    Participant

    Hi @eirini,

    There is an error in your Custom CSS. There is ?> instead of }, please fix it and the CSS will be working fine.

    Regards,
    Mahesh

    in reply to: Header image on category page. #83751
    Mahesh
    Participant

    Hi @eggbanana,

    Please create a child theme. Check this LINK to find more details on creating child theme. Activate child theme. Then in child theme’s functions.php add the following codes.

    /**
     * Modify Parent function to display header in Homepage and Post/Page.
     *
     */
    function fullframe_featured_overall_image() {
    		global $post, $wp_query;
    		$options				= fullframe_get_theme_options();
    		$defaults 				= fullframe_get_default_theme_options();
    		$enableheaderimage 		= $options['enable_featured_header_image'];
    
    		// Get Page ID outside Loop
    		$page_id = $wp_query->get_queried_object_id();
    
    		$page_for_posts = get_option('page_for_posts');
    
    		if ( is_home() || is_singular() ) {
    
    		// Check Enable/Disable header image in Page/Post Meta box
    		if ( is_page() || is_single() ) {
    			//Individual Page/Post Image Setting
    			$individual_featured_image = get_post_meta( $post->ID, 'fullframe-header-image', true );
    
    			if ( $individual_featured_image == 'disable' || ( $individual_featured_image == 'default' && $enableheaderimage == 'disable' ) ) {
    				echo '<!-- Page/Post Disable Header Image -->';
    				return;
    			}
    			elseif ( $individual_featured_image == 'enable' && $enableheaderimage == 'disabled' ) {
    				fullframe_featured_page_post_image();
    			}
    		}
    
    		// Check Homepage
    		if ( $enableheaderimage == 'homepage' ) {
    			if ( is_front_page() || ( is_home() && $page_for_posts != $page_id ) ) {
    				fullframe_featured_image();
    			}
    		}
    		// Check Excluding Homepage
    		if ( $enableheaderimage == 'exclude-home' ) {
    			if ( is_front_page() || ( is_home() && $page_for_posts != $page_id ) ) {
    				return false;
    			}
    			else {
    				fullframe_featured_image();
    			}
    		}
    		elseif ( $enableheaderimage == 'exclude-home-page-post' ) {
    			if ( is_front_page() || ( is_home() && $page_for_posts != $page_id ) ) {
    				return false;
    			}
    			elseif ( is_page() || is_single() ) {
    				fullframe_featured_page_post_image();
    			}
    			else {
    				fullframe_featured_image();
    			}
    		}
    		// Check Entire Site
    		elseif ( $enableheaderimage == 'entire-site' ) {
    			fullframe_featured_image();
    		}
    		// Check Entire Site (Post/Page)
    		elseif ( $enableheaderimage == 'entire-site-page-post' ) {
    			if ( is_page() || is_single() ) {
    				fullframe_featured_page_post_image();
    			}
    			else {
    				fullframe_featured_image();
    			}
    		}
    		// Check Page/Post
    		elseif ( $enableheaderimage == 'pages-posts' ) {
    			if ( is_page() || is_single() ) {
    				fullframe_featured_page_post_image();
    			}
    		}
    		else {
    			echo '<!-- Disable Header Image -->';
    		}
    	}
    	else{
    		return;
    	}
    }

    Then go to “Dashboard=> Appearance=> Customize=> Header Image” and select “Entire Site, Page/Post Featured Image” in Enable Featured Header Image on dropdown.

    Regards,
    Mahesh

    in reply to: Responsive – Homepage Slider not Page image #83749
    Mahesh
    Participant

    Hi @tracypost,

    Sorry for the inconvenience.
    The theme features in Catch Responsive and Simple Catch is little different. Catch Responsive allows you to display the slider using page’s featured image, whereas Simple Catch allows you to display the slider using post’s featured image.
    The feature you’ve mentioned is available in Catch Responsive Pro. I recommend you to upgrade to Catch Responsive Pro.

    Regards,
    Mahesh

    in reply to: Simple Catch Not allowing media to post #83748
    Mahesh
    Participant

    @tracypost,

    Have you done any modifications to the theme? We checked the theme and everything working fine. We recommend you to try again with fresh WordPress installation and install the fresh copy of Simple Catch.

    Let me know if the problem persists.

    Regards,
    Mahesh

    in reply to: Header image on category page. #83708
    Mahesh
    Participant

    Hi @eggbanana,

    This option is not available in our theme. Seems you’ve used Category Featured Image plugin, please contact Category Featured Image plugin’s support. This is out of theme support scope.

    Regards,
    Mahesh

    in reply to: Submenus' Background color #83707
    Mahesh
    Participant

    Hi @eirini,

    Go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS:

    #header-menu ul.menu ul.sub-menu a {
        background-color: #606060;
    }

    Regards,
    Mahesh

    in reply to: Double menu on mobile devices #83706
    Mahesh
    Participant

    Hi @witgi,

    I got the email with style.css attached. Changing the style.css file only doesn’t add up another menu. You must have added some function / added some other codes for that.

    Regards,
    Mahesh

    in reply to: Post Page not showing posts #83702
    Mahesh
    Participant

    Hi @Moods,

    Oh okay, selecting all categories works fine as well.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: String "Continue reading" is not translated #83701
    Mahesh
    Participant

    Hi @jie66,

    This is a bug in the latest theme update. Our developers have fixed the issue, you’ll need to wait for the update.

    Regards,
    Mahesh

    in reply to: catch evolution pro purchase #83679
    Mahesh
    Participant

    Hi @terrence,

    Please post in your site url.

    Regards,
    Mahesh

    in reply to: RSS html feed and changing color #83678
    Mahesh
    Participant

    Hi @husker,

    This is not controlled by the theme. The feed is a xml code. You have to do it manually. This is out of the theme support scope.

    Regards,
    Mahesh

    in reply to: Featured Slider: making entry-container always show #83667
    Mahesh
    Participant

    Hi @akeyworth,

    Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.

    #feature-slider .entry-container {
        background: none repeat scroll 0 0 rgba(0, 0, 0, 0.6);
        border-radius: 4px;
    }

    Regards,
    Mahesh

    in reply to: String "Continue reading" is not translated #83663
    Mahesh
    Participant

    Hi @jie66,

    Please post in your site url. The theme is translation ready and is compatible with translation plugins like WPML, Qtranslate.
    Which translation plugin are you using? I’ve tested with Qtranslate and is working fine.

    Regards,
    Mahesh

    Mahesh
    Participant

    Hi @fishingguy,

    Please post in your site url.

    Regards,
    Mahesh

    in reply to: Post Page not showing posts #83661
    Mahesh
    Participant

    Hi @Moods,

    Please go to “Dashboard=> Appearance=> Customize=> Theme Options=> Frontpage/Homepage Options” and make sure that nothing is select. Only the post within categories selected in here will be displayed in the blog page.

    Regards,
    Mahesh

    in reply to: increasing width of post content? #83659
    Mahesh
    Participant

    Hi @shawn,

    Please add the following CSS in “Dashboard=> Appearance=> Theme Options=> Custom CSS” box.

    #content article.post {
        padding: 10px 10px 30px;
    }

    Regards,
    Mahesh

    in reply to: Gif on the featured slider #83657
    Mahesh
    Participant

    Hi @Daniel,

    Sorry there. Thank you for using Catch Box Pro.
    For gif images in slider, go to “Dashboard=> Appearance=> Theme Options=> Featured Slider (Tab)” and select Featured Image Slider in Select Slider Type option. Then scroll down you’ll see Featured Image Slider Options, click on Add/Change button in image and choose your desired gif image. After you’re done, click Save.

    Let me know if this helps with your issue.

    Regards,
    Mahesh

    in reply to: Today's Date Function and header and footer code #83656
    Mahesh
    Participant

    Hi @Mark Argentino,

    It is not necessay to follow the theme structure in child theme. Please remove the inc folder from child theme’s folder. Add the following code in child theme’s functions.php.

    function catchbox_header_details() { 
    
    	// Check to see if the header image has been removed
    	global $_wp_default_headers;
    	$header_image = get_header_image();
    	if ( ! empty( $header_image ) ) : 
         	echo '<div id="hgroup" class="site-details with-logo">';
    	else :
        	echo '<div id="hgroup" class="site-details">';     
    	endif; // end check for removed header image  ?>
     
       		<h1 id="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
           	<h2 id="site-description"><?php bloginfo( 'description' ); ?></h2>
       	</div><!-- #hgroup --> 
    
    <?php
    }

    And then modify the “site-description” as desired. The modification here will override the parent theme’s function and you can see the changes in the frontend.

    Let me know if any problems.

    Regards,
    Mahesh

    Mahesh
    Participant

    Hi @Lucia,

    That is because of the responsive design issue. Please add the following CSS and it will fix the issue.

    @media screen and (max-width: 1224px) {
    	#primary
    	{
    	   width: 654px;
    	}
    	#secondary {
    	   width: 340px;
    	}
    }
    
    @media screen and (max-width: 1060px) {
    	#primary
    	{
    	   width: 530px;
    	}
    }
    
    @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    	#primary {
    	    width: 590px;
    	}
    }
    
    @media screen and (max-width: 960px) {
    	#primary, #secondary, .no-sidebar #primary {
    	    width: 100%;
    	}
    }
Viewing 20 posts - 4,641 through 4,660 (of 4,916 total)