Forum Replies Created

Viewing 20 posts - 11,521 through 11,540 (of 14,509 total)
  • Author
    Posts
  • in reply to: How to change the color of a link in my posts #11535
    Sakin
    Keymaster

    @klhaight: then you can add the following css.
    #content .entry-content a, #content .entry-summary a { color: #004d1b; }

    If you see your header image http://www.chatfieldcourt.com/wp-content/uploads/2013/07/headerblacktag6.jpg there is lot of white space in the image itself. Why don’t you just crop that white spaces and upload the image section only. Then you can simply center the image with the following css.
    #branding { text-align: center; }

    in reply to: Remove Featured Image on Posts #11534
    Sakin
    Keymaster

    @lakeoswegobaseball: It should be like that. You just have to add featured image in the page and then setup. I think you have insert the image in the page content as well. That is why it is showing two. Can you add it in one page and show me.

    in reply to: Reposition logo image in header #11533
    Sakin
    Keymaster

    @nicolet531: Wow you have posted here was well. It depends on site to site. Since, we are working this on email. Let’s get it solved there.

    in reply to: add thumbnail to serach results #11532
    Sakin
    Keymaster

    @Trishah: You code looks like just replace that
    <?php the_post_thumbnail('thumbnail'); ?> with

    <?php if( has_post_thumbnail() ):?>
    	<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'catchbox' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark">
    		<?php the_post_thumbnail('featured-slider'); ?>
    	</a>
    <?php endif; ?>

    then you need to check in those post has featured image or not. If those post don’t have featured image then it will not display the image. See this for featured image http://en.support.wordpress.com/featured-images/#setting-a-featured-image

    in reply to: Featured Slider issue #11531
    Sakin
    Keymaster

    @kdhutto1: About your slider, if you have one long title and another short title, then you will have this issue. We cannot make the height fixed due to responsive design as it need to adjust as per the screen size. So, here what you can do is. For the post that has long title, you can shorten the content through post excerpt box. You can just add the few words only in the excerpt box. This can help you give more control of the text. See this for Excerpt Box: http://en.support.wordpress.com/splitting-content/excerpts/

    Same with the menu, we cannot make that as we don’t know how long will be your menu. You can try increasing the padding of the menu. For example, in the following css I have increase the padding left and right to 54px. If you like that then you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    #branding ul.menu a {
        padding: 0 54px;
    }
    in reply to: thin schadow-lines around menu icons #11530
    Sakin
    Keymaster

    @sam: Nice 🙂

    in reply to: Add border to tables #11529
    Sakin
    Keymaster

    @pango: We don’t have much default style for table. Just a border, width and padding. See the css that we have for table.

    .entry-content table {
        border-bottom: 1px solid #e6e6e6;
        width: 100%;
    }
    .entry-content td {
        border-top: 1px solid #e6e6e6;
        padding: 10px 10px 8px 0;
    }

    When I check in your page, I found that we were using old html code as
    <td bgcolour="#ff9900">Point 1</td> this will not work. You have to change that to.
    <td style="background-color:#ff9900;">Point 1</td>

    in reply to: Remove top white gap on top of page #11527
    Sakin
    Keymaster

    @nzcid: yes you can replace that with the following css.

    #header-content {
        margin: 0;
        padding: 0;
    }

    This changes was made to make it compatible to latest HTML5.

    in reply to: IS ANYBODY THERE? #11526
    Sakin
    Keymaster

    @nicolet531: We usually answer the support forum within 8 hours in Weekday and within 24 hours during weekends. Since, we run the site globally, there is time difference.

    Sorry for the trouble. I have already started assisting you even thorough email.

    in reply to: changing home page? #11525
    Sakin
    Keymaster

    @Rideit NZ: This options in not there. For this you might need to hire customizer. This is complicated process. First you need create child theme, then you need to remove_action your catcheverest_homepage_featured_display() and then add_action back catcheverest_homepage_featured_display() to the after sidebar area.

    I am not 100% sure, you can try adding the following code in your child theme functions.php

    // Unhook default parent functions
    function unhook_default_functions() {
    	remove_action( 'catcheverest_main', 'catcheverest_homepage_featured_display', 10 );
    }
    add_action('init','unhook_default_functions');
    
    add_action( 'catcheverest_after_secondary', 'catcheverest_homepage_featured_display', 10 );
    in reply to: Images Wont Resize for Slider #11524
    Sakin
    Keymaster

    @nicolet531: If you use the post slider in Catch Box, it will take your Featured Image from the post. If the image is higher then Width: 644px and Height: 320px, then it will crop to Width: 644px and Height: 320px. If it is lower then this size, then it will show you your original size.

    But you have flexibility to use or own image size if you are using Featured Image Slider.

    The Colon (:) is the separator between then title and excerpt content of the post. If you want to remove that, then you have to add in the custom css to hide it.

    in reply to: Comment Box #11523
    Sakin
    Keymaster

    @nicolet531: For individual pages, you can disable the comment from “Discussion” box. Just uncheck “Allow comments” and if you further want to disable trackback then uncheck “Allow trackbacks and pingbacks on this page”. For more details about enable and disable comments. See this http://en.support.wordpress.com/enable-disable-comments/

    in reply to: Header Issues #11522
    Sakin
    Keymaster

    @nicolet531: This is not supported by default. So you have to add custom CSS for that. Since you are already in my support list. I will contact you through email.

    in reply to: thin schadow-lines around menu icons #11521
    Sakin
    Keymaster

    @sam: I don’t see your menu icon home, pictures, friends and so on. But I guess you mean menu border. You can remove that by adding the following css in “Appearance => Theme Options => Custom CSS” box.
    #header #mainmenu ul li { border: none; }

    in reply to: Minimizing top space #11519
    Sakin
    Keymaster

    @mikel: You can send me your site URL. Then I can check your site and send you the custom css that you can add in your “Appearance => Theme Options => Custom CSS” box.

    in reply to: How to change the color of a link in my posts #11498
    Sakin
    Keymaster

    @klhaight: I check in your site code and you have added the link code in “Appearance => Theme Options => Custom CSS” box.

    a,
    #site-title a:focus,
    #site-title a:hover,
    #site-title a:active,
    .entry-title a:hover,
    .entry-title a:focus,
    .entry-title a:active,
    .widget_catchbox_ephemera .comments-link a:hover,
    section.recent-posts .other-recent-posts a[rel="bookmark"]:hover,
    section.recent-posts .other-recent-posts .comments-link a:hover,
    .format-image footer.entry-meta a:hover,
    #site-generator a:hover {
    	color: #b6b6b4;
    }

    I don’t know why you have added that css. For link the following css will be fine to add it in “Appearance => Theme Options => Custom CSS” box.
    a { color: #004d1b; }

    in reply to: Featured Slider Questions #11496
    Sakin
    Keymaster

    @jackwagon: You have blocked my IP. So, I am not being able to access it. So, I assume you are using Simple Catch Free theme and I am going to give you css as per that.

    You can simply add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .featured-text { display: none; }

    Sakin
    Keymaster

    @alessandra: You can adjust the padding bottom as per your need and then add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #hgroup-wrap {
        padding-bottom: 50px;
    }

    I don’t get is what you mean by bottom page to footer.

    in reply to: Theme Update #11491
    Sakin
    Keymaster

    @kdhutto1: Can you check now? For any issues related to sales and account. You can directly contact our sales staff at http://catchthemes.com/contact-us/

    in reply to: add thumbnail to serach results #11490
    Sakin
    Keymaster

    @Trishah: Can you send me your site URL? I need to check in your site and see which theme are you using it.

Viewing 20 posts - 11,521 through 11,540 (of 14,509 total)