Forum Replies Created

Viewing 20 posts - 10,401 through 10,420 (of 14,496 total)
  • Author
    Posts
  • in reply to: Menus & Responsive Design #15038
    Sakin
    Keymaster

    @ddelmotte: What’s your WordPress version? Can you share your menu screenshot?

    in reply to: Catch Everes Theme Width #15034
    Sakin
    Keymaster

    @@klox77: You can just remove that css from your Custom CSS box.

    in reply to: Crop Slider Image #15031
    Sakin
    Keymaster

    @rgcoles: Actually that is not there in theme. But can you try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #slider-wrap .featured-img { float: left; }
    #slider-wrap .featured-text { float: right; }
    in reply to: Catch Everes Theme Width #15028
    Sakin
    Keymaster

    @klox77: 900px is too small. When you make 900px you need to adjust a lot. So, add in the following CSS in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (min-width: 1060px) {
    .site {
    	margin: 20px auto;
    	width: 900px;	
    }
    #primary {
    	width: 500px;
    }
    .page-links,
    .widget,
    blockquote,
    .site-content article,
    .site-content .site-navigation,
    #infinite-handle,
    .comments-title, #reply-title,
    #respond {
    	margin-bottom: 30px;
    }
    #homepage-message {
    	margin-top: 30px;
    }
    article.sticky .featured-post,
    .page-header,
    p,
    .featured-image,
    .entry-content table,
    .comment-content table,
    .widget.widget_catcheverest_social_widget,
    #content .searchform {
    	margin-bottom: 20px;
    }
    #header-right .widget,
    .entry-header,
    article.format-aside .entry-title,
    .comments-area article header {
    	margin-bottom: 20px;
    }
    .page .entry-header,
    .widget-title,
    #header-right .widget.widget_catcheverest_social_widget {
    	margin-bottom: 10px;
    }
    .container {
    	padding: 0 30px;
    }
    #site-logo,
    #hgroup,
    #header-right,
    #supplementary,
    #main {
    	padding-top: 30px;
    }
    #hgroup-wrap,
    .hentry,
    .comments-area article { 
    	padding-bottom: 30px;
    }
    #site-generator .site-info {
    	padding: 20px 0;
    }
    #header-menu ul.menu a, 
    #colophon #access-footer ul.menu a {
    	padding: 0 15px;
    }
    .entry-header .entry-title {
        padding-bottom: 0;
    }
    }
    in reply to: Crop Slider Image #15027
    Sakin
    Keymaster

    @rgcoles: I check in the document you send me. It’s the same as your site. It doesn’t show what changes you want.

    in reply to: Catch Everes Theme Width #15023
    Sakin
    Keymaster

    @klox77: Can you tell by what the width that you want?

    in reply to: Menus & Responsive Design #15022
    Sakin
    Keymaster
    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/

Viewing 20 posts - 10,401 through 10,420 (of 14,496 total)