Forum Replies Created

Viewing 20 posts - 1,801 through 1,820 (of 14,510 total)
  • Author
    Posts
  • in reply to: social media icons won´t show in frontend #78744
    Sakin
    Keymaster

    @webtussi: It’s still in maintenance mode.

    in reply to: Featured content title incorrect location #78739
    Sakin
    Keymaster

    @Keir: Thanks for your appreciation.

    in reply to: changes footer #78738
    Sakin
    Keymaster

    @netmairie: Sorry we don’t have that option in Free theme. We didn’t added that as we provide free theme and free support and I think it’s good to keep that attribution for our effort.

    There is easy option in pro version. You can simply go to “Appearance => Customize => Theme Options => Custom CSS” options box and edit it.

    in reply to: Single Column on blog? #78726
    Sakin
    Keymaster

    @bigsmall444: Sorry there is no trail of Pro. We only have Free and Pro versions. But you can contact to sales and ask for more info at http://catchthemes.com/contact-us/

    in reply to: Update failure to 3.0 #78725
    Sakin
    Keymaster

    @Kim: Ok then email me and I will check in details.

    in reply to: Font-size for the posts in "Aside" Format #78705
    Sakin
    Keymaster

    @Emi: Please post in your site URL and explain. If you are trying to change font size in Aside post format entry content, then you need to change the font in the following csss and then add it in “Appearance => Theme Options => Custom CSS Options” box:
    .format-aside .entry-content { font-size: 15px; }

    in reply to: Is there a button class for the Promotion button? #78703
    Sakin
    Keymaster

    @Debbie: Which button, you want to change. please post in your site URL and let me know which button are you trying to change.

    in reply to: Single Column on blog? #78702
    Sakin
    Keymaster

    @bigsmall444: If you want image on top with one column then you need to upgrade to Pro and then select “Show Excerpt (Image Top)” from “Appearance => Customize => Theme Options => Layout Options => Archive Content Layout”. In Catch Adaptive Pro theme, you will get following layout options:

    • Columns Layout (Image Top)
    • Show Excerpt (Image Left)
    • Show Excerpt (Image Right)
    • Show Excerpt (Image Top)
    • Show Full Content (No Featured Image)

    In Catch Adaptive Free theme, you can change layout from “Appearance => Customize => Theme Options => Layout Options => Archive Content Layout”. There you can choose “Show Excerpt (Image Left)” and then Save & Publish it.

    in reply to: Problems with comment systems #78701
    Sakin
    Keymaster

    @It_was: Disqus plugin has problem with many theme. You can read more about it at https://help.disqus.com/customer/portal/articles/472005-wordpress-troubleshooting. So, better try alternative plugin like, Jetpack plugin, comment module.

    in reply to: social media icons won´t show in frontend #78699
    Sakin
    Keymaster

    @webtussi: How do I check in when you site is in maintenance mode. Your site needs to be live to check in.

    in reply to: responsive.css #78698
    Sakin
    Keymaster

    @Kenta: You can change the line height in the following css:
    #primary { line-height: 1.65; }

    in reply to: Create and/or remove the header for one page? #78697
    Sakin
    Keymaster

    @dbosworthstmtoolbox-org: You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    .page-id-1456 #masthead, .page-id-1456 .nav-primary { display: none; }

    in reply to: Adding Widget Area #78696
    Sakin
    Keymaster

    @Gregory: I see that you have added in the following CSS in Custom CSS box, which makes it solid color.
    #branding #access, #colophon #access-footer { background: none #205e1d; }

    Remove that.

    in reply to: Fav Icon Won't Show Up #78692
    Sakin
    Keymaster

    @Emanuel: Maybe you want to ask in that plugin support. It’s not theme issue.

    in reply to: Mobile Menu #78691
    Sakin
    Keymaster

    @Kim: Ok email me and then I can check that for you.

    in reply to: Increase body width/decrease sidebar width #78688
    Sakin
    Keymaster

    @KTR1982: You sire is not working. Please check in your site URl and let me know it.

    in reply to: Upgrading Pro 1.2 to 2.0 #78653
    Sakin
    Keymaster

    @birdpuk: There are two methods to update your theme A) From WordPress Dashboard and B) From FTP. You can read more about it from theme instructions at http://catchthemes.com/theme-instructions/catch-adaptive-pro/#updating

    A) From WordPress Dashboard:
    1. First you need to download “Catch Updater” plugin from http://catchthemes.com/wp-plugins/catch-updater/.
    2. Install and activate “Catch Updater” plugin from “Plugins => Add New => Uploads”
    2. Download the latest zip file from your account at http://catchthemes.com/my-account
    3. Finally upload the downloaded zip file from “Appearance => Themes => Add New => Uploads”

    B) From FTP:
    1. Download the latest zip file from your account at http://catchthemes.com/my-account
    2. Unzip/Extract that zip file
    3. Using an FTP client to access your host web server, go to /wp-content/themes/ and upload your new copy of Catch Adaptive Pro Theme which shall replace the old files

    in reply to: Update failure to 3.0 #78652
    Sakin
    Keymaster

    @Kim: Check the steps that you have missed:
    1. First you need to install and activate “Catch Updater” from “Plugins => Add New => Uploads”
    2. You need to download the latest zip file from your account at http://catchthemes.com/my-account
    3. You can upload the downloaded zip file from “Appearance => Themes => Add New => Uploads”

    in reply to: Fav Icon Won't Show Up #78617
    Sakin
    Keymaster

    @Emanuel: Looks like there is two favicon loaded in your site. But I cannot check in your site as you have disable right click on your site. So, I cannot view source of your site. Can you disable that for now and then I can debug it.

    in reply to: responsive.css #78616
    Sakin
    Keymaster

    @Kenta: If you just want to make small changes, then you can add your responsive style in “Appearance => Theme Options => Custom CSS” box. But if you want to totally change responsive.css then you need to dequeue parent style and add you child file.

    So, if you want to edit it from your child theme then first, you need to create responsive.css and functions.php file in your child theme. If you download sample child theme from http://catchthemes.com/blog/create-child-theme-wordpress/, then you will get this. You just need to add responsive.css file.

    Then, you need to add the following code in your functions.php file in your child theme

    // Remove Parent theme responsive.css and adding new responsive.css in child theme 
    function adventurous_child_enqueue_scripts() {
        wp_dequeue_style( 'adventurous-responsive' );
        wp_enqueue_style( 'adventurous-child-responsive', get_stylesheet_directory_uri() . '/responsive.css' );
    }
    add_action( 'wp_enqueue_scripts', 'adventurous_child_enqueue_scripts', 11 );
Viewing 20 posts - 1,801 through 1,820 (of 14,510 total)