Forum Replies Created

Viewing 20 posts - 1,581 through 1,600 (of 14,506 total)
  • Author
    Posts
  • in reply to: Center logo? #79884
    Sakin
    Keymaster

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

    in reply to: No installation wizard #79881
    Sakin
    Keymaster

    @cesudweeks: This clearly show that there is conflict between plugins Social Lite and wondergallery plugin.

    So, I see only option is to contact that plugin author to fix the plugin conflict. You can also ask how to re-run the installation wizard in that plugin support.

    No, you don’t need to pay for Pro version to get my support. I give support to both free and pro version equally.

    in reply to: Non-Responsive #79880
    Sakin
    Keymaster

    @Trisha: Looks like there is issue with the plugin that you are using which is changing the position of responsive.css. So, try disabling plugin one by one to find the conflicting plugin. Also, you site is protected to view source to check in what’s the issue.

    in reply to: blog post not showing in blog list #79879
    Sakin
    Keymaster

    @Robert: I just check in your setting and found this. You have checked “Check to exclude Grid Content post from Homepage posts” from “Appearance => Customize => Featured Grid Content => Featured Grid Content Options”. I un-checked it and it’s showing all posts now.

    in reply to: Featured Content alignment #79876
    Sakin
    Keymaster

    @deevd: You featured content is in center, you just need vertical alignment. So, replace previous css:

    #featured-post .post {
        display: inline-block;
        float: none;
    }

    With the following css:

    #featured-post .post {
        display: inline-block;
        float: none;
        vertical-align: top;
    }
    in reply to: Remove footer from specific page? #79875
    Sakin
    Keymaster

    @cytorath18: You can install Jetpack plugin and activate “Widget Visibility” module from where you wan control widget is various pages.

    in reply to: Can't put sidebar on blog page #79874
    Sakin
    Keymaster

    @Isabella: Can you post in your site URL so that I can check in. So post pages, you can either use “Archive Sidebar” or “Main Sidebar”. It should take Archive Sidebar if you have widgets in there.

    in reply to: Excerpt/Summary not as specified #79873
    Sakin
    Keymaster

    @bigoslesli: That is why I am here for you 🙂 Thanks…

    in reply to: Layout Help #79872
    Sakin
    Keymaster

    @leotrim77: Sorry I don’t get it what you mean. Please post in screenshot of what you want.

    in reply to: New CatchBox Pro 4.3 Mobile Options #79868
    Sakin
    Keymaster

    @Edward: Can you post in your site URL and let me know the color that you want to change it. Then I can check in Custom CSS for you. Also I can check in the issue of your menu. Thanks.

    Following is the details of mobile menu color css, you can change it as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:

    /* Mobile Menu Bar Background Color */
    .menu-access-wrap { background-color: #3d3d3d; }
    /* Mobile Menu Bar Text Color */
    .mobile-menu-anchor a.genericon-menu { color: #ddd; }
    /* Mobile Menu Bar Text Hove Color */
    .mobile-menu-anchor a.genericon-menu:hover { color: #fff; }
    /* Mobile Menu Items Background Color */
    .sidr { background-color: #3d3d3d; }
    /* Mobile Menu Items Text Color */
    .sidr ul li a, .sidr ul li span { color: #eee; }
    /* Mobile Menu Items Text Hove Color */
    .sidr ul li a:hover { background-color: #333; color: #fff; }
    in reply to: Home Page Featured Slider #79867
    Sakin
    Keymaster

    @YC-Capilia: Sorry there is no other easy way to add alt tag in your image slider. So, what I suggest you is to add that title and then hide it by adding the following css in “Appearance => Theme Options => Custom CSS” box:
    #main-slider .entry-container { display: none; }

    But if you don’t want to do this then you need to build child theme. For child theme refer to http://catchthemes.com/blog/create-child-theme-wordpress/ and then copy catcheverest_image_sliders() function to your child theme functions.php file and add it manually.

    in reply to: Home Page Featured Slider #79866
    Sakin
    Keymaster

    @Paul: Sorry I don’t see featured slider in your site. So, I am confused what are you trying to do it.

    in reply to: Logo and Site Title/Tag Line are not Showing #79865
    Sakin
    Keymaster

    @tosgood: Thanks for your appreciation 🙂

    in reply to: space between the latest posts in content sidebar #79839
    Sakin
    Keymaster

    @Kenta: For that you can decrease margin-bottom and padding-bottom in the following css, as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:

    #main #content .hentry {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    in reply to: Layout Help #79836
    Sakin
    Keymaster

    @leotrim77: Decreasing the sidebar width for your site is not a good idea as your advertisement widget in your site is showing ads of that size. If you decrease that sidebar then your ads will have problem.

    So, best option will be to increase the width of the site and then content. For, that you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    @media screen and (min-width: 1153px) {
        .site { width: 1140px; }
        #main { width: 760px; }
    }
    @media screen and (min-width: 1281px) {
        .site { width: 1250px; }
        #main { width: 870px; }
    }
    in reply to: Excerpt/Summary not as specified #79834
    Sakin
    Keymaster

    @bigoslesli: You are in wrong settings. That “Settings => Reading” is for your RSS feed not for blog. For blog layout, you need to go to “Appearance => Theme Options => Layout Options” and select “Excerpt/Blog Display” in Content Layout and save changes.

    in reply to: Featured Content alignment #79831
    Sakin
    Keymaster

    @deevd: try adding following CSS in “Appearance => Theme Options => Custom CSS” box:

    #featured-post .post {
        display: inline-block;
        float: none;
    }

    If this doesn’t work then you need to post in your site URL so that I can check in detail.

    in reply to: Changing the width of Content and Sidebar (part 2) #79830
    Sakin
    Keymaster

    @deevd: It will be as below:

    @media screen and (min-width: 1280px) {
        .no-sidebar-full-width .container { width: 1220px; }
        .no-sidebar-full-width #primary { width: 100%; }
    }
    @media screen and (min-width: 1344px) {
        .no-sidebar-full-width .container { width: 1300px; }
    }
    @media screen and (min-width: 1440px) {
        .no-sidebar-full-width .container { width: 1400px; }
    }
    @media screen and (min-width: 1550px) {
        .no-sidebar-full-width .container { width: 1490px; }
    }
    in reply to: Home Page Featured Slider #79829
    Sakin
    Keymaster

    @Paul: You site is not live so I couldn’t check in your image slider position.

    in reply to: Home Page Featured Slider #79828
    Sakin
    Keymaster

    @YC-Capilia: Which Slider type have you select in Slider Options. In Catch Everest Pro theme, you can select slider type as “Image Slider”. Then you can upload your image and add in title. That title will be added as image alt tag.

    For image slider, check out http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-slider/

Viewing 20 posts - 1,581 through 1,600 (of 14,506 total)