Forum Replies Created

Viewing 20 posts - 4,201 through 4,220 (of 14,509 total)
  • Author
    Posts
  • in reply to: Word split is wrong, how to switch off? #55572
    Sakin
    Keymaster

    @Bert: Can you post in your site URL so that I can check in. Also you can try adding in the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    .hentry {
    	-webkit-hyphens: manual;
    	-moz-hyphens: manual;
    	hyphens: manual;	
    }
    in reply to: Search Box #55570
    Sakin
    Keymaster

    @Kim: sorry it should be as
    #third-sidebar .widget_custom_menu_wizard .current-menu-item a { font-weight: bold; }

    in reply to: Date Link #55568
    Sakin
    Keymaster

    @Kim: Then you can simply add in the following css in “Appearance => Theme Options => Custom CSS” box:
    .entry-meta { display: none; }

    in reply to: Change menu title on mobile devices? #55567
    Sakin
    Keymaster

    @vigilant_spb: Which code are you talking about? Let me know you site URL and explain it.

    in reply to: translate responsive box menu "menu" title #55554
    Sakin
    Keymaster

    @vigilant_spb: To change that to child theme, you need to dequeue and enqueue it. First, you need to copy catchbox-allmenu-min.js to your child theme js directory and then add the following code in your child theme functions.php file.

    function catchbox_child_scripts() {
        wp_dequeue_script( 'catchbox-allmenu' );
        wp_enqueue_script('catchbox-child-allmenu', get_stylesheet_directory_uri() . '/js/catchbox-allmenu-min.js', array('jquery'), '201301503', true);
    }
    add_action( 'wp_enqueue_scripts', 'catchbox_child_scripts', 20 );
    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”

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