Forum Replies Created

Viewing 20 posts - 3,441 through 3,460 (of 14,506 total)
  • Author
    Posts
  • in reply to: Featured slider image customization #59184
    Sakin
    Keymaster

    @alphaxyz: Sorry no plan for 2 featured content area. As you can also use Footer Widget Area and add anything you like. If you want more option, then there is always option to build child theme. For child theme refer to http://catchthemes.com/blog/create-child-theme-wordpress/

    in reply to: Home page settings #59177
    Sakin
    Keymaster

    @salen555: Yes, in Pro version you can use Featured Image Slider and then don’t add in link. So, there will be slider image without link.

    in reply to: Custom CSS #59174
    Sakin
    Keymaster

    @andliowoo: It’s because #ffffff is white and you will see white at the end. So, change that to blue like below:

    body {
        background: #1e73be; /* Show a solid blue color for older browsers */
        background: -moz-linear-gradient(#1e73be, #b2dafd);
        background: -o-linear-gradient(#1e73be, #b2dafd);
        background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#1e73be), to(#b2dafd)); /* older webkit syntax */
        background: -webkit-linear-gradient(#1e73be, #b2dafd);
    }
    in reply to: Featured slider image customization #59173
    Sakin
    Keymaster

    @alphaxyz: There is option to move Featured Content above footer. For that go to “Appearance => Customize => Featured Content => Featured Content Options” and then check in option “Check to Move above Footer”.

    in reply to: Disable text on Post slider #59172
    Sakin
    Keymaster

    @Irina: It’s not working as you have PHP code in Custom CSS box. You need to remove the following code from your custom css box. This custom css box is only for css not for php code.

    <?php if ( function_exists('yoast_breadcrumb') ) {
    yoast_breadcrumb('<p id="breadcrumbs">','</p>');
    } ?>
    in reply to: Changing the width of Content and Sidebar #59171
    Sakin
    Keymaster

    @Yuna: If you are adding in your child theme css then you can add the following css instead:

    @media screen and (min-width: 981px) {	
        #main #primary { width: 690px; }
        #main #secondary { width: 200px; }
    }
    @media screen and (min-width: 1025px) {
        #main #primary { width: 730px; }
    }
    @media screen and (min-width: 1153px) {
        #main #primary { width: 860px; }
    }
    @media screen and (min-width: 1281px) {
        #main #primary { width: 930px; }
    }
    @media screen and (min-width: 1345px) {
        #main #primary { width: 1020px; }
    }
    in reply to: Add new fonts #59170
    Sakin
    Keymaster

    @Lynn: Can you post in your site URL after you add in your font from plugin. Then I can check that for you.

    in reply to: Blank text #59169
    Sakin
    Keymaster

    @rojtalbot:`You can change the color code in the following css in “Appearance => Theme Options => Custom CSS” box to change the link color:
    #supplementary .widget-area a { color: #21759b; }

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

    @tinlee: To change the font, you either need to upgrade to pro version where you have Font Family options or you need to use Font plugin. Try searching for Font plugin at WordPress.org. Then the css will be as below:

    #site-title { font-family: "Lobster";  }
    #site-description { font-family: Arial,sans-serif; }
    in reply to: gallery image caption links #59158
    Sakin
    Keymaster

    @effess: Oh for that you need to build child theme and then copy content-gallery.phpfile in your child theme and edit it. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/

    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.

Viewing 20 posts - 3,441 through 3,460 (of 14,506 total)