Forum Replies Created

Viewing 20 posts - 4,181 through 4,200 (of 14,497 total)
  • Author
    Posts
  • in reply to: Featured Slider #55581
    Sakin
    Keymaster

    @diths802: In simple catch theme, you will find it in “Appearance => Theme Options => Featured Post Slider”. Check this screenshot http://awesomescreenshot.com/0e14t9jk21

    in reply to: Logo Not aligned when not in full screen #55580
    Sakin
    Keymaster

    @jblack6572: You can replace your old css with the following css:

    @media screen and (max-width: 1280px) {
        .header-sidebar .widget ul.menu a { padding: 0 10px; }
        #hgroup-wrap img { max-width: 250px; }
    }
    @media screen and (max-width: 1152px) {
        .header-sidebar .widget ul.menu a { padding: 0 6px; }
        #hgroup-wrap img { max-width: 180px; }
    }
    in reply to: add fonts #55579
    Sakin
    Keymaster

    @Guillaume: You can add Google Font plugin and then add that font.

    in reply to: Extra home page #55577
    Sakin
    Keymaster

    @keithwoolford: If you are using default page menu than your home will be automatically added in your menu. But you can build custom menu from “Appearance => Menu” and add menu items as per your need and then select menu location from “Appearance => Menus => Manage Locations”. Check this http://catchthemes.com/blog/custom-menus-wordpress-themes/

    in reply to: Turn Off Featured Image Function #55576
    Sakin
    Keymaster

    @Kim: Sorry there is no option like this. If you want this then you need to build child theme and do the custom coding.

    in reply to: Website Not showing proper in mobile devices #55575
    Sakin
    Keymaster

    @harish: It is displaying fine in my mobile devices. Can you let me know what exactly is not working fine then I can check in. I see minor issue with your image and text that you have added in table which is not responsive. For that why don’t you use “Featured Content”. Just go to “Appearance => Theme Options => Featured Content”, in Featured Settings, you can choose enable and position options and so on and then in Featured Content options you can add in your featured content.

    in reply to: Full width logo #55574
    Sakin
    Keymaster

    @kevin:
    1. First you need to upload your logo from “Appearance => Theme Options => Header Options”, chick on “Custom Header: Logo & Site Details”, then upload logo image of size at least 1140px width. Then disable header right sidebar from “Appearance => Theme Options => Header Right Sidebar Options.
    2. Then add the following css in “Appearance => Theme Options => Custom CSS” box to remove all white spaces around your uploaded logo.
    #hgroup-wrap.container, #site-logo, #hgroup { padding: 0; }
    3. Then add the following css in “Appearance => Theme Options => Custom CSS” box to add text above image.

    #hgroup-wrap {
        position: relative;
    }
    #hgroup.with-logo {
        left: 5%;
        position: absolute;
        top: 17%;
    }
    in reply to: Inspiration & best practices #55573
    Sakin
    Keymaster

    @Johan: Sorry we don’t track our users so I don’t have any link to it.

    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;
    }
Viewing 20 posts - 4,181 through 4,200 (of 14,497 total)