Forum Replies Created

Viewing 20 posts - 7,541 through 7,560 (of 14,497 total)
  • Author
    Posts
  • in reply to: Image alignment with text #30960
    Sakin
    Keymaster

    @mark: You can do that from your page/post editor. See we have shown the different image alignment and how it displays.
    http://catchthemes.com/demo/simplecatch-pro/catch-themes/images-test/

    This is more us formatting WordPress post/page. I hope this will help you http://en.support.wordpress.com/images/image-alignment/

    in reply to: add double lines to menu #30959
    Sakin
    Keymaster

    @Ryan415: You forgot to add in your site URL so that I know all the placeholder that you are talking about.

    in reply to: Making child theme #30951
    Sakin
    Keymaster
    in reply to: Secondary menu conditionals #30950
    Sakin
    Keymaster

    @kteschmitt: Thanks for your appreciation. Cheers 🙂

    in reply to: How to enable jetpack infinite scroll? #30949
    Sakin
    Keymaster

    @pierangelopirro: Can you send me your site URL so that I can check in.

    in reply to: Logo above sidebar #30948
    Sakin
    Keymaster

    @iceman027: Sorry bit confused about what are you trying to do it. Can you send me the screenshot design of what you want to do it. Then I can check in that is possible or not.

    in reply to: Backoffice very slowly with Pro version Kathmandu #30938
    Sakin
    Keymaster

    @Romuald: Ok I will email you personally to check in details. As in our server Catch Everest and Catch Kathmandu Pro Backend loads at the same time. Also both the backend use same code base.

    in reply to: link button not working #30931
    Sakin
    Keymaster

    @mergelane: Ok I will email you directly so that we can better communicate. You can upload the screenshot image in your site or any photosharing site and paste the url here.

    in reply to: add gallery #30876
    Sakin
    Keymaster

    @ashrafashraf: I don’t suggest changing font size in responsive design site. If you need then you need to consult with css developer. So better hire it.

    in reply to: Logo above sidebar #30875
    Sakin
    Keymaster

    @iceman027: I see that you have added Social Icons in Header Top Sidebar. You can remove from there and add in Header Right Sidebar so you will have logo on left and social icon on right.

    in reply to: Featured Post Slider Broken? #30872
    Sakin
    Keymaster

    @Richard: Sorry I haven’t used this plugin. Please as in Plugin author support forum.

    in reply to: Image alignment with text #30870
    Sakin
    Keymaster

    @mark: For formatting the image and text. You need to use breaks, paragraphs and alignment while editing the post/page.

    in reply to: Large logo size not an option #30868
    Sakin
    Keymaster

    @christian: This means that the image you have uploaded in not larger that the large image size you have set in “Settings => Media”.

    in reply to: Featured Post Slider Broken? #30865
    Sakin
    Keymaster

    @Richard: You should be getting it soon.

    in reply to: add gallery #30864
    Sakin
    Keymaster

    @ashrafashraf: there is missing bracket close }. It will be as below:

    function catchbox_extra_gallery() {
    	if ( is_page( 16 ) ) {
    		echo do_shortcode('[go_portfolio id="flex9"]');
    	}
    }
    add_action( 'catchbox_before_primary', 'catchbox_extra_gallery', 15 );
    in reply to: link button not working #30862
    Sakin
    Keymaster

    @mergelane: Still don’t get it maybe you can share your screenshot showing what you mean. For edit, you need to login in and use the header bar where there will be edit.

    in reply to: Large logo size not an option #30859
    Sakin
    Keymaster

    @christian: You can upload the image form Media Uploader and add the image URL in “Appearance => Theme Options => Header Options => Logo URL”. Yes, can you send me the screenshot issues with Change Header Logo button.

    in reply to: Secondary menu conditionals #30857
    Sakin
    Keymaster

    @kteschmitt: Ok here is the code. You just need to create empty functions.php file in your child theme and then add the following code.

    <?php
    /**
     * Catch Box Child Theme functions and definitions
     *
     */
    /**
     * Header Menu
     *
     * @since Catch Box 2.5
     */
    function catchbox_header_menu() { ?>
    	<nav id="access" role="navigation">
    		<h3 class="assistive-text"><?php _e( 'Primary menu', 'catchbox' ); ?></h3>
    		<?php /*  Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff. */ ?>
    		<div class="skip-link"><a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to primary content', 'catchbox' ); ?>"><?php _e( 'Skip to primary content', 'catchbox' ); ?></a></div>
    		<div class="skip-link"><a class="assistive-text" href="#secondary" title="<?php esc_attr_e( 'Skip to secondary content', 'catchbox' ); ?>"><?php _e( 'Skip to secondary content', 'catchbox' ); ?></a></div>
    		<?php /* Our navigation menu.  If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?>
    	
    		<?php
    			if ( has_nav_menu( 'primary', 'catchbox' ) ) { 
    				$args = array(
    					'theme_location'    => 'primary',
    					'container_class' 	=> 'menu-header-container', 
    					'items_wrap'        => '<ul class="menu">%3$s</ul>' 
    				);
    				wp_nav_menu( $args );
    			}
    			else {
    				echo '<div class="menu-header-container">';
    					wp_page_menu( array( 'menu_class'  => 'menu' ) );
    				echo '</div>';
    			} ?> 		
    			   
    		</nav><!-- #access -->
    		
    	<?php if ( has_nav_menu( 'secondary' ) && is_page(array('375', '333', '327', '381', '335' ) ) ) {
    		// Check is footer menu is enable or not
    		$options = catchbox_get_theme_options();
    		if ( !empty ($options ['enable_menus'] ) ) :
    			$menuclass = "mobile-enable";
    		else :
    			$menuclass = "mobile-disable";
    		endif;
    		?>
            <nav id="access-secondary" class="<?php echo $menuclass; ?>"  role="navigation">
    			<h3 class="assistive-text"><?php _e( 'Secondary menu', 'catchbox' ); ?></h3>
    				<?php /*  Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff. */ ?>
    				<div class="skip-link"><a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to primary content', 'catchbox' ); ?>"><?php _e( 'Skip to primary content', 'catchbox' ); ?></a></div>
    				<div class="skip-link"><a class="assistive-text" href="#secondary" title="<?php esc_attr_e( 'Skip to secondary content', 'catchbox' ); ?>"><?php _e( 'Skip to secondary content', 'catchbox' ); ?></a></div>
    			<?php wp_nav_menu( array( 'theme_location'  => 'secondary', 'container_class' => 'menu-secondary-container' ) );  ?>
    		</nav>
    	<?php }
    }
    in reply to: Add new slider #30851
    Sakin
    Keymaster

    @ashrafashraf: Yes that Page ID 42 is just sample, you need to add the ID of the page where you want the slider.
    You can add the following css in “Appearance => Theme Options => Custom CSS” box.
    .easingsliderlite, .easingsliderlite-shadow { margin: 0 auto !important; }

    in reply to: Featured Post Slider Broken? #30845
    Sakin
    Keymaster

    @Richard: Yes sure. Please contact our sales directly with our first purchase details and second purchase need.

Viewing 20 posts - 7,541 through 7,560 (of 14,497 total)