Forum Replies Created

Viewing 20 posts - 9,641 through 9,660 (of 14,509 total)
  • Author
    Posts
  • in reply to: W3 validation / checking CSS html etc #17525
    Sakin
    Keymaster

    @oly: What type of validation you are talking about. If you are talking about HTML5 validation then it’s under experimental phase and almost all advance site will not be validated. You can try any site google.com, yahoo.com, wordpress.com and even wordpress.org.

    So, while checking validation we should concerned about missing closing tags proper structuring. Others are not necessary.

    in reply to: Putting a Follow Me box in Post #17524
    Sakin
    Keymaster

    @klhaight: These things falls under plugin territory. So, you need to install plugin and add in. Try searching for social and mail subscription plugin at http://wordpress.org/plugins/

    in reply to: viewing videos on my site #17523
    Sakin
    Keymaster

    @henry: If you want youtube video to play directly from your site. WordPress support youtube video where you can just post in youtube video link in your post or page and it will show the video. But if you are posting video from other sources then yes you need embed code.

    in reply to: slider image #17522
    Sakin
    Keymaster

    @K: Please post in your site URL and then I can check in.

    in reply to: Change font in menu bar #17521
    Sakin
    Keymaster

    @k.capelli: If it’s web safe font then you can easily add it with custom CSS. But if you want to change to premium fonts then you need to embed the font and add it. This is quite complicated.

    in reply to: Feature Slider – Re-sizable? #17497
    Sakin
    Keymaster

    @rgbarsanti: Simply add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .featured { height: 250px; }

    in reply to: how to move search button under site title #17496
    Sakin
    Keymaster

    @owen: Oh sorry I missed that. You can add the following instead of above css.

    #branding #searchform {
        padding-top: 10px;
        position: static;
        text-align: center;
    }
    #branding #s {
        float: none;
    }
    in reply to: Queries #17494
    Sakin
    Keymaster

    @kumar: Then it’s all good. Thanks 🙂

    in reply to: Feature Slider – Re-sizable? #17493
    Sakin
    Keymaster

    @rgbarsanti: Sorry I mean move to upload the size you want that is 976Ă—250

    in reply to: Where is the tag located? #17492
    Sakin
    Keymaster

    @owen: There you can see <body <?php body_class(); ?>> . In wordPress Theme we need to add default hook body_class in `‘ code.

    in reply to: Excludes Posts From Searches #17489
    Sakin
    Keymaster

    @fcharvet: The simple way is to just remove the post when you are using Image Slider. But if you want then it’s bit complicated. You need to build child theme and then crate functions.php file in your child theme and add the following code.

    <?php
    /**
     * Only Pages in Search
     */
    function catcheverst_child_search_pages($query) {
        if ( !is_admin() && $query->is_main_query() ) {
            if ($query->is_search) {
    			$query->set( 'post_type', 'page' );
            }
        }
    }
    add_action( 'pre_get_posts', 'catcheverst_child_search_pages' );
    in reply to: how to move search button under site title #17487
    Sakin
    Keymaster

    @owen: This looks quite complicated. But you can try in by adding the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #branding #searchform { text-align: center; }
    #branding #s { float: none; }
    in reply to: Where is the tag located? #17486
    Sakin
    Keymaster

    @owen: That is HTML code and is located in header.php file.

    in reply to: Content Box Colour #17484
    Sakin
    Keymaster

    @lizzy39: For detail color customization you can simply upgrade to Catch Everest Pro where you have color options in your Theme Options panel.

    For free one you need to be more specific on which one you want to change. For site you can add the following CSS in “Appearance => Theme Options => Custom CSS” box. Change the color code as per your need.
    .site { background-color: #fff; }

    in reply to: Queries #17483
    Sakin
    Keymaster

    @kumar: Thanks for your support question but you have remove the copyright information for Catch Box theme. So, please add back. This is only reason we provide free theme and free support. If you want to remove that you can use Pro version.

    Actually it is not a good method to add background in header to make it responsive. But since your image is small you can use background position.

    #branding {
        background: url("/wp-content/themes/catch-box/images/Reheader.png") no-repeat scroll center center transparent;
    }

    For your second question, you need to work with the plugin support forum.

    in reply to: Remove featured image permalink to post #17480
    Sakin
    Keymaster

    @Coupon Guy: Thanks 🙂

    in reply to: Feature Slider – Re-sizable? #17479
    Sakin
    Keymaster

    @rgbarsanti: Can you upload the featured image of the size 976×320 and let me know it. Then I will check in what can be done.

    in reply to: Rounded Corners #17464
    Sakin
    Keymaster

    @pchambers: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    .site {
        background-color: transparent;
        box-shadow: none;
    }
    in reply to: Feature Slider – Re-sizable? #17463
    Sakin
    Keymaster

    @rgbarsanti: Can you post in your site URL and then let me know what is the size that you are trying to accomplish. If you are using Pro version of the theme then you have Featured Image Slider, where you can upload the image size of your own choice and it will be re-sized automatically.

    in reply to: Remove featured image permalink to post #17462
    Sakin
    Keymaster

    @Coupon Guy: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .single .featured-image { float: left; }

Viewing 20 posts - 9,641 through 9,660 (of 14,509 total)