Forum Replies Created

Viewing 20 posts - 3,461 through 3,480 (of 14,509 total)
  • Author
    Posts
  • in reply to: Enter custom CSS #59157
    Sakin
    Keymaster

    @helpme: Ok you can change the font size in the following as per your need and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    /* site title font size */
    .site-title { font-size: 38px; }
    /* sub title font size and italic */
    .site-description { font-size: 14px; font-style: italic; }
    /* category description italic */
    .taxonomy-description { font-style: italic; }
    in reply to: White space on individual posts #59152
    Sakin
    Keymaster

    @Charissa: For individual page/post, you can add the following css:
    .entry-content { margin-top: 0; }

    in reply to: images on tablet #59150
    Sakin
    Keymaster

    @marcodimi: Please check your image URL. The dropdox image that you posted in is not found.

    in reply to: Changing title font and colour #59148
    Sakin
    Keymaster

    @lastdayremnant: Thanks but font option is there only in Pro version. So, either upgrade to pro version or you can install Font plugin. Trying searching for plugin at https://wordpress.org/plugins/ and then add the following css, where you can change the font-family.

    #site-title {
        font-family: "Lobster";
    }
    in reply to: Customize Demo Slider #59145
    Sakin
    Keymaster

    @Kavitha: Full Frame Free theme only supports “Featured Page Slider”, See this theme instructions at http://catchthemes.com/theme-instructions/full-frame/#featured-slider . So, you need to create page and add featured image on those pages. After that you can select page. But if you want to use Featured Post Slider then you need to upgrade to pro version.

    in reply to: Customize Demo Slider #59144
    Sakin
    Keymaster

    @fumitoshi: Yes, you can add your own image and text without any page or post in Pro version. You will can use “Featured Image Slider” and “Featured Image Content”. For more details, check out theme instructions page of pro version at http://catchthemes.com/theme-instructions/full-frame-pro/

    in reply to: Featured Image slider question #59143
    Sakin
    Keymaster

    @Olivia: Thanks for the access and I found that there was conflict with “Easy Testimonials” plugin. So, I have deactivated that plugin and it works fine.

    in reply to: Remove Leave A Reply from comments #59121
    Sakin
    Keymaster

    @Dan: First build child theme. For child theme and sample child theme, you can download it from http://catchthemes.com/blog/create-child-theme-wordpress/ and then copy comments.php file to your child theme file and then edit comment_form(); and change the text as per your need by replacing it with following

    comment_form(array(
       'title_reply' => 'Leave a Reply',
       'title_reply_to' => 'Leave a Reply to %s',
    ));
    in reply to: deactivate h1 and h2 in header #59120
    Sakin
    Keymaster

    @RimFrost: Sorry I don’t get it what you mean. Can you explain in reference with your site URL?

    in reply to: Featured Content -Image Content #59119
    Sakin
    Keymaster

    @Matthew: I check in your site and it’s showing only in homepage. Can you trying clearing your Cache from W3 Total Cache settings and then check in.

    in reply to: Enabling shortcode in text widget #59118
    Sakin
    Keymaster

    @Crusoe: Thanks for your appreciation. For Jetpack subscription, they have Widget called “Blog Subscriptions (Jetpack)”. See this http://jetpack.me/support/subscriptions/.

    You can use plugin to enable shortcode in widgets. Try searching for plugin in http://wordpress.org/plugins/.

    in reply to: Different Slider Images On Each Page #59117
    Sakin
    Keymaster

    @Lynn: Sorry there is no option like that. You might want to search for plugin.

    in reply to: Blank text #59060
    Sakin
    Keymaster

    @rojtalbot: I see the following css in your Custom CSS box. The following css will make your link text in footer are white and also your background in white. So, it’s empty. Change that color code and it will be fine.
    #supplementary .widget-area, #supplementary .widget-area a { color: #FFFFFF; }

    in reply to: Font and size changing, please help! #59059
    Sakin
    Keymaster

    @tinlee: I am not sure which heading you want to change. So, I am giving you the range of css, where you can change the font size as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:

    /* Main Site Title */
    #site-title {
        font-size: 45px;
    }
    /* Site Tagline */
    #site-description {
        font-size: 14px;
    }
    /* Post Title */
    #main #content .post h1, 
    #main #content .post h2.entry-title {
        font-size: 34px;
    }
    in reply to: Disable text on Post slider #59058
    Sakin
    Keymaster

    @Irina: Just add the following css in “Appearance => Theme Options => Custom CSS” box:
    #slider-wrap .featured-text { display: none; }

    in reply to: Changing the width of Content and Sidebar #59057
    Sakin
    Keymaster

    @Yuna: Thanks for your concern and help. Yes, we are getting lot of help from Canada and all over the World. It’s so nice of everyone helping each other.

    To adjust the width, you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    @media screen and (min-width: 981px) {	
        #primary { width: 690px; }
        #secondary { width: 200px; }
    }
    @media screen and (min-width: 1025px) {
        #primary { width: 730px; }
    }
    @media screen and (min-width: 1153px) {
        #primary { width: 860px; }
    }
    @media screen and (min-width: 1281px) {
        #primary { width: 930px; }
    }
    @media screen and (min-width: 1345px) {
        #primary { width: 1020px; }
    }
    in reply to: Link slider image #59056
    Sakin
    Keymaster

    @kat22: Sorry, Catch Everest Free theme only have option to use Featured Post Slider, which is created to highlight your post and will link only to your post.

    So, the best option at this stage will be to upgrade to Pro version where you have option to use Featured Image Slider, in which you have option to upload your image and link to any URL you like.

    But if you don’t like to upgrade then you can redirect post to that site.

    Note: there are lot of other additional features that you will get in Pro version. You can check out the list from http://catchthemes.com/theme-instructions/catch-everest-pro/

    in reply to: Promotion headline: disable on a specific page? #59054
    Sakin
    Keymaster

    @cocha: There is no option to disable promotion headline only in particular page. But you can hide it using custom css. For that you need to find your page ID and then replace the ID 2026 in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:
    .page-id-2026 #promotion-message { display: none; }

    Note: You might want to check out Catch IDs plugin to find your page ID. https://wordpress.org/plugins/catch-ids/

    in reply to: gallery image caption links #59053
    Sakin
    Keymaster

    @effess: We recommend using Jetpack plugin or Nextgen Gallery plugin for gallery then WordPress default gallery. See our demo gallery page http://catchthemes.com/demo/catch-kathmandu/gallery/ where we use Jetpack plugin.

    in reply to: attachment page #59052
    Sakin
    Keymaster

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

    .single-attachment .entry-header .entry-title,
    .single-attachment .entry-meta { display: none; }

    2. Not sure what you mean. Maybe you can check this cool gallery demo http://catchthemes.com/demo/catch-kathmandu/gallery/ where we use JetPack plugin “Carousel and Tiled Galleries” module

    Please post in your site URL so that I can understand your requirement better.

Viewing 20 posts - 3,461 through 3,480 (of 14,509 total)