Forum Replies Created

Viewing 20 posts - 10,421 through 10,440 (of 14,509 total)
  • Author
    Posts
  • in reply to: Custom Editing theme #15019
    Sakin
    Keymaster

    @k.capelli: You can add the css like the following CSS in “Appearance => Theme Options => Custom CSS” box to add your custom image in the header background.

    #branding {
        background: url("http://www.thelostlondoner.com/wp-content/uploads/2013/09/id1.jpg") repeat scroll 0 0 transparent;
    }

    For menu, it’s better you just add the background url from “Appearance => Theme Options => Color Options”. But if you really was to add image, then you can add the following CSS in “Appearance => Theme Options => Custom CSS” box, where you can just change the image url.

    #access {
        background: url("http://www.thelostlondoner.com/wp-content/uploads/2013/09/id1.jpg") repeat scroll 0 0 transparent;
    }

    To make the header center, you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #branding .logo-wrap, #site-logo, #site-details {
        width: 100%;
    }
    #site-logo a img, #site-details {
        display: block;
        float: none;
        margin: 0 auto;
        padding: 0;
        text-align: center;
    }

    This is the level at max I can help in. For more, you need to hire developer to customize it for you.

    in reply to: Menu items that are parents not pages #15018
    Sakin
    Keymaster

    @tomwyka: Thanks

    in reply to: Post Title in Categories #15010
    Sakin
    Keymaster

    @lew1s: you can add following CSS ot hide it.
    .page .entry-header, .single .entry-header, #main-slider .entry-header { display: none; }

    in reply to: Post Title in Categories #15008
    Sakin
    Keymaster

    @lew1s: When I check in your category, I see that you have hidden the title with css.

    .entry-title {
        display: none;
    }

    The best option is to copy content.php file in your child theme and edit it. So, it will be like this

    <?php
    /**
     * The default template for displaying content
     *
     * @package Catch Themes
     * @subpackage Catch Everest
     * @since Catch Everest 1.0
     */
    ?>
    
    <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    
    	<?php if ( is_sticky() && is_home() && ! is_paged() ) : ?>
            <div class="featured-post"><?php _e( 'Featured post', 'catcheverest' ); ?></div>
        <?php endif; ?>
        
        <?php if( has_post_thumbnail() ):?>
        	<figure class="featured-image">
            <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'catcheverest' ), the_title_attribute( 'echo=0' ) ) ); ?>">
                <?php the_post_thumbnail( 'featured' ); ?>
            </a>
            </figure>
        <?php endif; ?>
        
        <div class="entry-container">
        
    		<header class="entry-header">
        		<h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'catcheverest' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
    			<?php if ( 'post' == get_post_type() ) : ?>
                    <div class="entry-meta">
                        <?php catcheverest_header_meta(); ?>
                    </div><!-- .entry-meta -->
    			<?php endif; ?>
    		</header><!-- .entry-header -->
    		<?php if ( is_category() ) :
    			return false;
    		else : 
    		// Getting data from Theme Options
    		global $catcheverest_options_settings;
    		$options = $catcheverest_options_settings;
    		$current_content_layout = $options['content_layout'];
    		$catcheverest_excerpt = get_the_excerpt();
    		
    		if ( is_search() || ( !is_single() && $current_content_layout=='excerpt' && !empty( $catcheverest_excerpt ) ) ) : ?>
                <div class="entry-summary">
                    <?php the_excerpt(); ?>
                </div><!-- .entry-summary -->     
    		<?php else : ?>
                <div class="entry-content">
                    <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'catcheverest' ) ); ?>
                    <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'catcheverest' ), 'after' => '</div>' ) ); ?>
                </div><!-- .entry-content -->
            <?php endif; ?>
    
            <footer class="entry-meta">
            	<?php catcheverest_footer_meta(); ?>
    			<?php if ( comments_open() && ! post_password_required() ) : ?>
                    <span class="sep"> | </span>
                    <span class="comments-link">
                        <?php comments_popup_link(__('Leave a reply', 'catcheverest'), __('1 Reply', 'catcheverest'), __('% Replies', 'catcheverest')); ?>
                    </span>
                <?php endif; ?>            
                <?php edit_post_link( __( 'Edit', 'catcheverest' ), '<span class="sep"> | </span><span class="edit-link">', '</span>' ); ?>
    			<?php if ( is_singular() && get_the_author_meta( 'description' ) && is_multi_author() ) : // If a user has filled out their description and this is a multi-author blog, show a bio on their entries. ?>
    				<div class="author-info">
    					<div class="author-avatar">
    						<?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'catcheverest_author_bio_avatar_size', 68 ) ); ?>
    					</div><!-- .author-avatar -->
    					<div class="author-description">
    						<h2><?php printf( __( 'About %s', 'catcheverest' ), get_the_author() ); ?></h2>
    						<p><?php the_author_meta( 'description' ); ?></p>
    						<div class="author-link">
    							<a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author">
    								<?php printf( __( 'View all posts by %s <span class="meta-nav">&rarr;</span>', 'catcheverest' ), get_the_author() ); ?>
    							</a>
    						</div><!-- .author-link	-->
    					</div><!-- .author-description -->
    				</div><!-- .author-info -->
    			<?php endif; ?>            
            </footer><!-- .entry-meta -->
           <?php endif; //Category empty loop ?>
            
      	</div><!-- .entry-container -->
        
    </article><!-- #post-<?php the_ID(); ?> -->
    in reply to: Spacing menu buttons evenly #15007
    Sakin
    Keymaster

    @webhive: Are are using Catch Box theme? This theme is responsive design so, you need to take that in consideration and add the spaces according to the screen sizes. So you css will be like. Read about media screen and you will get idea.
    For screensize with max width 1224px
    @media screen and (max-width: 1224px) { }
    For Ipad landscape

    @media only screen 
    and (min-device-width : 768px) 
    and (max-device-width : 1024px) 
    and (orientation : landscape) { }
    in reply to: Catch Box #15005
    Sakin
    Keymaster

    @nzcid: Just build child theme and then create file functions.php then add the code like below

    <?php
    function catchbox_child_custom_ads() { 
    	/* Add in your Custom Code here */
    
    }
    add_action('catchbox_after_header', 'catchbox_child_custom_ads', 10 );
    in reply to: Custom Editing theme #15004
    Sakin
    Keymaster

    @k.capelli: Your customize looks advance. So, you might need to consider hiring developer.

    The header background is actually small pattern image that is repeat. For your large image, I recommend to use 1600px width image for header.

    You can use image for menu as well.

    For logo center you need to remove social icon from the header first.

    Sakin
    Keymaster

    @Luis: Sorry Lusi, I cannot find your account to fix it. Can you contact to our sales directly with you account username and email address at http://catchthemes.com/contact-us/

    in reply to: Crop Slider Image #14996
    Sakin
    Keymaster

    @rgcoles: I just need your design screenshot. Not the site XML file.

    in reply to: Menu items that are parents not pages #14989
    Sakin
    Keymaster

    @tomwyka: You can add parent and child menu from “Appearance => Menus”. See this http://en.support.wordpress.com/menus/#changing-the-order-creating-sub-menus

    in reply to: Background Image #14988
    Sakin
    Keymaster

    @shamwow: You can add back your background image from “Appearance => Background”.

    in reply to: Image Border #14987
    Sakin
    Keymaster

    @shamwow: Please don’t add email signatures and reply here. This is public forum.

    I just check in your links and found that is added from css of wolfnet-idx-for-wordpress plugin. The only image shadow in your logo soflims is added from our theme. You can remove that by adding the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .page .entry-content img { box-shadow: none; }

    For that listing you need to contact plugin author to fix the css issues. They have following CSS which is giving issue.

    .wolfnet_widget.wolfnet_featuredListings .wolfnet_listing .wolfnet_listingImage img, .wolfnet_widget.wolfnet_listingGrid .wolfnet_listing .wolfnet_listingImage img {
        border: 1px solid #EBEBEB;
        box-shadow: 0 5px 10px rgba(153, 153, 153, 0.25);
        height: 95px;
    }

    If you look that the css, it’s height is fixed 95px. So, as per this plugin your email should be of same proposant.

    in reply to: Crop Slider Image #14984
    Sakin
    Keymaster

    @rgcoles: There is nothing in the dropbox link you shared. for updating check this theme instructions at http://catchthemes.com/theme-instructions/catch-box-pro/

    in reply to: Customizing Catch Everest Pro #14983
    Sakin
    Keymaster

    @brooklynfunbus: Your site is working fine for me. About the custom social icons. Just add it and send me the details of your site. I will contact you in email.

    in reply to: Crop Slider Image #14972
    Sakin
    Keymaster

    @rgcoles: You can upload in your site or dropbox and send me the link.

    in reply to: Featured Slider disappears #14971
    Sakin
    Keymaster

    @moffie: Sorry there is no option to add other featured image. It’s there only in Pro version.

    in reply to: Menus & Responsive Design #14969
    Sakin
    Keymaster

    @Sakin: By the way, I just check in your site in my iPhone5 and it’s working great. Can you refresh and check in.

    in reply to: Menus & Responsive Design #14968
    Sakin
    Keymaster

    @ddelmotte: For custom menu, first you need to create menu from “Appearance => Menus => create a new menu” then you need to assign location from “Appearance => Menus => Manage Locations”. See more about menus at http://catchthemes.com/blog/custom-menus-wordpress-themes/

    in reply to: Updating Catch Everest Pro #14967
    Sakin
    Keymaster

    @jennyebermann: If you haven’t edited any core theme files like sytle.css, index.php, header.php, footer.php, functions.php and so on then you don’t have to worry about updates. You will not loose any of your settings and content. That is why we recommend our user to customize the theme with the help of theme options, widget and so on. And if you want to do advance customization then you cn build child then and add or edit core theme files.

    in reply to: Slideshow gone when plugin activated #14966
    Sakin
    Keymaster

    @Frans: Can you contact Fancy Gallery Pro Plugin author. They need to make that plugin compatible to theme. As out there is fully review and made compatible as per WordPress.org guideline.

Viewing 20 posts - 10,421 through 10,440 (of 14,509 total)