Forum Replies Created

Viewing 20 posts - 13,801 through 13,820 (of 14,496 total)
  • Author
    Posts
  • in reply to: How can I add custom google web font ? #4141
    Sakin
    Keymaster
    in reply to: Font type in Navigation menu and body #4140
    Sakin
    Keymaster

    @poornima.uk: Always add in your Site URL please and then only I can send your the Custom CSS.

    in reply to: Thumbnail pic with post excerpt #4139
    Sakin
    Keymaster

    @dommyt: You site URL please. Always add in your site URL so that we can check it and see that you are doing.

    in reply to: Header Questions #4138
    Sakin
    Keymaster

    @llmancini: Add the following CSS in the “Custom CSS” box in your Theme Options panel for border and background in header search box.

    #header .social-search form.searchform input {
    background: #ccc;
    border: 1px solid #000;
    height: 33px;
    width: 200px;
    }

    But for the social links color you need to replace the image.

    in reply to: Mobile and size issue #4136
    Sakin
    Keymaster

    @frederikwa: Free version is fully responsive that is why it will display different in mobile to make it fit. I said you cannot disable the responsive in free version.

    in reply to: Changing menu colour not working #4135
    Sakin
    Keymaster

    @llmancini: This is for menu background color for your site. For hove I see that you have already added it.

    #header #mainmenu ul li {
    background-color: #ccff66;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    }

    in reply to: Different headers on different pages #4134
    Sakin
    Keymaster

    @Rufi139: What do you mean by different header. Do you mean the Title of the pages. Then yes you can change the title of the pages that is not a problem. But if you are talking about Header image then no this is not supported in this theme.

    in reply to: eCommerce #4133
    Sakin
    Keymaster

    @laura: We haven’t checked our theme with any e-commerce plugin. But from my opinion Woo Commerce will be best to use. But you might need to build support for that. Let us know and then we will help you.

    in reply to: color of site title and tagline #4132
    Sakin
    Keymaster

    @truthinablog: You can change the value of the color code and the font size as per your need and add the following css in “Custom CSS” box in your Theme Options

    h1#site-title a {
    color: #bbb;
    font-size: 50px;
    }
    h2#site-description {
    color: #666;
    font-size: 14px;
    }

    in reply to: Changing the Color of the Font Headline #4130
    Sakin
    Keymaster

    @thess: Can you be more specific on what you want to change and how you want it to make it look like. Also add in your site url.

    in reply to: Search Bar Spacing on Header #4129
    Sakin
    Keymaster

    @thess: Please post on Simple Catch Forum and then also add in your Site URL.

    in reply to: General Question #4128
    Sakin
    Keymaster

    @paigeohliger: Yes you can add the link in The content of Featured Image Slider. But you need to add the following css in “Custom CSS” box to make the link text visible.
    .featured-text p a { background: none; display: inline; position: relative; text-indent: 0; }

    in reply to: Mobile and size issue #4127
    Sakin
    Keymaster

    @frederikwa: If you are using free version then you need to upgrade to Pro version to remove the responsive design.

    For sidebar, can you send me the design screenshot and I will send your the custom css.

    in reply to: Child theme #4118
    Sakin
    Keymaster

    @marga: Yes, if you are just customizing CSS then you can use Custom CSS box and no need to create child theme.

    in reply to: Slider question #4097
    Sakin
    Keymaster

    @poornima.uk: If you are using Featured Image Slider, then you have option to add in Title and Description that will be content for the slider. But if you are using Featured Post Slider it will take the title and excerpt of the post.

    in reply to: Tabbed Widget #4073
    Sakin
    Keymaster

    @Dennis: In Cache Mustang theme there is widget called “Catchthemes: Tabbed Widget” from which you can add popular posts, recent posts and feature posts.

    Further, yes there are plugin available for tab widgets for WordPress.

    in reply to: Mobile and size issue #4072
    Sakin
    Keymaster

    @frederikwa: Can you send me your site URL please? If you have Pro / Premium version of theme then you have option to disable responsive so that the mobile displays same as in desktop.

    Yes full width will disable a sidebar. But you can achieve full with with sidebar through customizing css and using the layout with sidebar.

    in reply to: Header Before Text #4071
    Sakin
    Keymaster

    @golfer300: oh we are trying to add this option soon. Keep eye of change log http://catchthemes.com/changelogs/catch-box-theme/.

    But yes, if you have Catch Box Pro theme then we have already arrange the header element in a way so that you can just add simple css to make it inline.

    in reply to: Page Buttons #4070
    Sakin
    Keymaster

    @linleffel: oh now I understand what you are talking about. This option is not there is simple catch theme. Actually simple catch theme is designed to make like this http://catchthemes.com/demo/simplecatch . Small header image on the left and social icons on the right. But if you have header image with larger then it will make the social icon go that.

    By the way, we haven’t recommend the size for the header image. That size you have added is the recommendation for the Feature Post Slider- Width: 976px and Height: 313px.

    Sorry to say but the feature that you have asked is not currently supported by Simple Catch Theme. You need to build child theme and do the customization. Just build a child theme with style.css and then copy the header.php and then move the items in header.php up and down like this


    <div class="social-search">
    <?php
    // simplecatch_headersocialnetworks displays social links given from theme option in header
    if ( function_exists( 'simplecatch_headersocialnetworks' ) ) :
    simplecatch_headersocialnetworks();
    endif;
    // get search form
    get_search_form();
    ?>
    </div><!-- .social-search -->

    <?php
    // Funcition to show the header logo, site title and site description
    if ( function_exists( 'simplecatch_headerdetails' ) ) :
    simplecatch_headerdetails();
    endif;
    ?>

    in reply to: Add subheader to post title and reduce padding #4064
    Sakin
    Keymaster

    @bobbafett: If you have added child theme then it’s good and your changes will not be modified and also keep in track with the changelog http://catchthemes.com/changelogs/catch-box-theme/ . This will list the things that changes in various versions.

    Now there is two option for custom css. One you can add it up in your child theme style.css this is best option but if you want the easy option then you can add it in “Custom CSS” box in your Theme Options panel

    /* You can decrease the padding top for #main wrap */
    #main { padding-top: 2em; }
    /* For post title padding */
    .entry-header hgroup .entry-title { padding-top: 15px; padding-bottom: 10px; }
    /* For content below the title */
    .entry-content, .entry-summary { padding-top: 2em; }

    For adding files in child theme, it depends on which files you are changing it.

Viewing 20 posts - 13,801 through 13,820 (of 14,496 total)