Forum Replies Created

Viewing 20 posts - 4,201 through 4,220 (of 14,504 total)
  • Author
    Posts
  • in reply to: Shortcode in promotion headline? #55551
    Sakin
    Keymaster

    @ghostzapper: Fist, did you check out how to build child theme and also download sample child theme from http://catchthemes.com/blog/create-child-theme-wordpress/. You will find functions.php file in that child theme. Just add the above code in that functions.php file. You don’t need to add php as it’s already there in functions.php file. Also you need to replace [huge_it_portfolio id=N] with your ID where it’s N.

    in reply to: Homepage headline white space #55548
    Sakin
    Keymaster

    @Kristin: I see there is closing bracket in the following css, and I don’t know what are you trying to do with the following css:

    #site-title {
        text-shadow: 2px 2px ;

    So, replace the following css:

    #site-title {
        text-shadow: 2px 2px ;
    #homepage-message {
    margin-top: 1px ;}

    With this css:
    #homepage-message { margin-top: 1px; }

    in reply to: Randomizing header images #55546
    Sakin
    Keymaster

    @aezzell: This theme doesn’t use random header so instead we added in Different header image option. You can build child theme and add the following code in your child theme functions.php file. For child theme, check out http://catchthemes.com/blog/create-child-theme-wordpress/

    function catchresponsive_featured_overall_image() { 
    	$options				= catchresponsive_get_theme_options();	
    	$header_image 			= get_header_image();
    	
    	if ( $header_image != '' ) { ?>
    		<div id="header-featured-image">
    			<div class="wrapper">
    				<?php 
    				// Header Image Title/Alt
    				if ( !empty( $options[ 'featured_header_image_alt' ] ) ) {
    					$title = esc_attr( $options[ 'featured_header_image_alt' ] ); 	
    				}
    				else {
    					$title = '';
    				}
    
    				// Header Image Link and Target
    				if ( !empty( $options[ 'featured_header_image_url' ] ) ) {
    					$link = esc_url( $options[ 'featured_header_image_url' ] );
    					
    					//Checking Link Target
    					if ( !empty( $options[ 'featured_header_image_base' ] ) )  {
    						$target = '_blank'; 	
    					}
    					else {
    						$target = '_self'; 	
    					}
    				}
    				else {
    					$link = '';
    					$target = '';
    				}
    
    				if ( !empty( $options[ 'featured_header_image_url' ] ) ) {  ?>
    					<a title="<?php echo esc_attr( $title ); ?>" href="<?php echo esc_url( $link ); ?>" target="<?php echo $target; ?>"><img src="<?php header_image(); ?>" alt="<?php echo $title; ?>"></a> 	
    				<?php 
    				}
    				else { ?>
    					<img src="<?php header_image(); ?>" alt="<?php echo $title; ?>">
    				<?php 
    				} ?>
    			</div>
    		</div>
    	<?php 	
    	}
    }
    in reply to: Image Slider question #55544
    Sakin
    Keymaster

    @Keir: Looks like there is some conflict with slider script and your plugin script. can you try disabling plugin one by one to find the conflicting plugin. Look like there is conflict with Easy timer plugin or might be other.

    in reply to: Adding a Logo and Adjusting Padding #55543
    Sakin
    Keymaster

    @moultrup:
    1. There is 2 area where you can add in logo. First, inside header toggle. For that you can just go to “Appearance => Customize => Site Title & Tagline”. Upload your logo and uncheck “Check to disable logo”. Second, logo icon in the left of fixed header top, for that go to “Appearance => Customize => Theme Options => Icon Options”.

    Sorry there is no option to add above promotion message. But in pro version, there is option to disable header toggle. So, it will fixable the header below your menu where you can show site title and logo as per your need.

    2. Are you taking about the text box in your slider. If so then you adjust the size, padding in the following css and then add it in “Appearance => Customize => Theme Options => Custom CSS” box:

    #feature-slider .entry-container {
        padding: 20px;
        width: 50%;
    }

    3. Site Title and promotion message are 2 different elements. I guess you are talking about Promotion Message. You can adjust the padding-bottom in the following css and then add it in “Appearance => Customize => Theme Options => Custom CSS” box:

    #promotion-message .wrapper, 
    #promotion-message .section {
        padding-bottom: 20px;
    }

    4. Then transparent black background in the Featured Page Slider is visible only in hover. Are you talking about the text as well?

    in reply to: Homepage featured content Headline #55541
    Sakin
    Keymaster

    @Keir: Sorry I don’t get it what you mean. When I check in your featured content. It looks fine.

    in reply to: Custom Menu Widget Colors in Header Right #55540
    Sakin
    Keymaster

    @David: Add the following css in “Appearance => Theme Options => Custom CSS” box:

    #sidebar-header-right.sidebar-top .widget_nav_menu {
        width: auto;
    }
    Sakin
    Keymaster

    @ghostzapper: Thanks 🙂

    Sakin
    Keymaster

    @ghostzapper: Thanks 🙂

    in reply to: Excerpt Lengths #55536
    Sakin
    Keymaster

    @rickm813: hum not so sure about it. But since you are using Featured Page Content. You might want to split the content of that page using more tag <!--more-->. so, only the text above more tag will be shown in Featured Page Content. For more details about more tag. check this http://devotepress.com/wordpress-writing-editing/how-to-split-content-using-the-more-tag-option/

    in reply to: Post navigation: Older/Newer posts #55535
    Sakin
    Keymaster

    @5er: You can install WP-PageNavi plugin https://wordpress.org/plugins/wp-pagenavi/ instead of WP-Paginate. This is supported by Adventurous Theme by default. Just activate and use it.

    in reply to: A couple of questions… #55534
    Sakin
    Keymaster

    @caesarq: Sorry this is Catch Flames support forum and you are using Catch Responsive theme, that is why it’s not working. For Catch Responsive theme, you can use the forum http://catchthemes.com/support-forum/forum/catch-responsive-free/.

    For your site, the css will be as below:

    .hentry {
      -webkit-hyphens: manual;
      -moz-hyphens: manual;
      hyphens: manual;
    }
    in reply to: I'd like a larger sidebar on the right #55501
    Sakin
    Keymaster

    @Guillaume: If you want larger sidebar then you need to decrease the content width. Let me know your desire width and site URL then I will send you custom css that you can add to change the width.

    in reply to: how to erase content area background? #55500
    Sakin
    Keymaster

    @kazcchi: Please post in your site URL so that I can check in and send you the css.

    in reply to: Footer php template #55499
    Sakin
    Keymaster

    @Karen: Yes, if you want to change footer.php file then you need to build child theme and edit it. For child theme check out http://catchthemes.com/blog/create-child-theme-wordpress/

    For Google Analytic and all you can add the code in “Appearance => Theme Options => Webmaster Tools => Header and Footer Codes” and then add it in “Code to display on Footer”

    in reply to: Featured content tabs for homepage display page as h1 #55498
    Sakin
    Keymaster

    @oleymedia: H1 tag per article tag is good for SEO in HTML5 and we have carefully designed H1 tags with special attention on header tag and headings. It is not good if you are using HTML4. But, Catch Responsive theme is build in HTML5, CSS3 and Responsive design. So, H1 is better for SEO then H2.

    You can also check this Video http://www.youtube.com/watch?v=GIn5qJKU8VM by Google software engineer Matt Cutts, who clearly states that you can use multiple H1 but don’t over do it. Also use h1 specific to heading and header tags.

    You can also check this article URL http://html5doctor.com/html5-seo-search-engine-optimisation/

    in reply to: drop down menu options do NOT have same look as top menu #55494
    Sakin
    Keymaster

    @robertjm: Yes, that is the design of the site menu. If you want to make same then you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #branding ul.menu ul a {
    	background: #3d3d3d; /* Show a solid color for older browsers */
    	background: -moz-linear-gradient(#585858, #3d3d3d);
    	background: -o-linear-gradient(#585858, #3d3d3d);
    	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#585858), to(#3d3d3d)); /* older webkit syntax */
    	background: -webkit-linear-gradient(#585858, #3d3d3d);
    	color: #eee;
    	font-size: 14px;
    }
    in reply to: Problem with featured category option #55475
    Sakin
    Keymaster

    @alphaxyz: Thanks for your appreciation and sorry for the trouble 🙂

    in reply to: Change Catch Responsive Menu Bar Color #55473
    Sakin
    Keymaster

    @joli: Please share your site URL and let me know the color code that you want to change to then I can give you css. For example, you can change the color code in the following css and add in “Appearance => Customize => Theme Options => Custom CSS Options” to change the background color of the menu.
    .nav-primary { background-color: #222; }

    Note: Detail color options are there in pro version from where you can simply choose color from color picker to change the color of various elements from “Appearance => Customize => Color Options”. For more info about additional option in pro version, you can check out theme instructions page at http://catchthemes.com/theme-instructions/catch-responsive-pro/

    in reply to: Responsive not working #55472
    Sakin
    Keymaster

    @Dona: I check in your site from mobile device and it’s working fine. Can you explain which photo are you talking about. Maybe you can share screenshot.

Viewing 20 posts - 4,201 through 4,220 (of 14,504 total)