Forum Replies Created

Viewing 20 posts - 3,441 through 3,460 (of 4,888 total)
  • Author
    Posts
  • in reply to: change site tittle and tagline sizes #93673
    Mahesh
    Member

    @luismarioochoa: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #site-header .site-title {
        font-size: 50px;
    }
    #site-header .site-description {
        font-size: 30px;
    }

    Note: Please adjust the font-size in the above code as you desire.

    Regards,
    Mahesh

    in reply to: Infinite scroll no longer workingq #93672
    Mahesh
    Member

    @travelgal: Have you installed other plugins apart from jetpack’s infinite scroll? try disabling plugins and check if it resolves the issue.
    For limiting the number of posts, go to Dashboard=> Settings=> Reading and adjust number in Blog pages show at most option.
    Other thing, go to Dashboard=> Appearance=> Customize=> Theme Options=> Homepage/Frontpage Options and make sure, all categories in the list are selected (Hold down the Ctrl (windows) / Command (Mac) button to select multiple options.).
    You are using child theme, have you made any customizations? If so try activating parent theme and see whether or not the problem persists in parent theme too.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Amazon Buy button #93671
    Mahesh
    Member

    @kelsantana: I checked your site and seem you do have Buy Now on Amazon link in the content. Do you want the CSS to make the link as button? Let me know further.

    Regards,
    Mahesh

    in reply to: Hide title and shadow in slider #93617
    Mahesh
    Member

    @champac: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #feature-slider .entry-container {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Slider controllers and title #93616
    Mahesh
    Member

    @lrdgsn: Go to Dashboard=> Appearance=> Customize=> Appearance=> Theme Options=> Custom CSS box and add the following CSS:

    #controllers {
        text-align: left;
        left: 15%;
    }
      
    @media screen and (max-width: 910px) {
        #controllers {
            left: 0;
        }
    }

    Hope this helps. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Delete search from header/primary menu #93612
    Mahesh
    Member

    @libertylobby: Yes, there is. Go to Dashboard=> Appearance=> Customize=> Fixed Header Options and check Check to disable Primary Menu and Check to disable fixed header toggle options.

    Regards,
    Mahesh

    in reply to: Social icon limitations for important social network ? #93611
    Mahesh
    Member

    @subcmarine: In Catch Base Free version, there is limited Social icons options. In Pro version there is Custom Social Icons options, with which you can add desired social icons to your site. I recommend you to upgrade to Pro version.

    Regards,
    Mahesh

    in reply to: Amazon Buy button #93610
    Mahesh
    Member

    @kelsantana: Please post in your site url.

    Regards,
    Mahesh

    in reply to: size pictures Featured Page Grid Content #93606
    Mahesh
    Member

    @calmo16: Thank you for your appreciation. Have a nice day!!!.
    Regards,
    Mahesh

    in reply to: Sidebar Menu #93605
    Mahesh
    Member

    @tatsujin: Thank you for your appreciation. Have a nice day!!!.

    Regards,
    Mahesh

    in reply to: Widgets posted but not editable in customizer #93562
    Mahesh
    Member

    @anncalli: Edit it from Dashboard=> Appearance=> Widget page.
    Let me know if any problem. Please post in your site url.

    Regards,
    Mahesh

    in reply to: Breadcrumbs Script Files Missing #93561
    Mahesh
    Member

    @aaspedia:
    For the fix, you’ll need to edit catch-responsive-pro/inc/catchresponsive-breadcrumb.php.
    Replace line 82 with the following line:
    echo $linkBefore . '<a href="' . esc_url( $homeLink ) . '" ' . $linkAttr . '>' . $text['home'] . '</a>' . $linkAfter;
    This will be fixed in next update.

    Regards,
    Mahesh

    in reply to: Turning off auto-hyphenation #93557
    Mahesh
    Member

    @finnjackson: Which browser are you using? I tested on mozilla and chrome, it is working fine.
    Let me know further.

    Regards,
    Mahesh

    in reply to: size pictures Featured Page Grid Content #93555
    Mahesh
    Member

    @calmo16: For two small ones, add the following CSS:

    #featured-grid-content .pageid-938 .caption .entry-title,
    #featured-grid-content .pageid-709 .caption .entry-title{
        margin: 0 auto;
        width: 50%;
    }

    Regards,
    Mahesh

    in reply to: Image captions and footer background #93554
    Mahesh
    Member

    @catwingz: Can you please give me the url of the page, where you want this? I am a bit confused.

    Regards,
    Mahesh

    in reply to: Disable Header Image on Mobile Device #93553
    Mahesh
    Member

    friarpaul: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    @media screen and (max-width: 540px) {
        #header-featured-image {
        	display: none;
        }
    }

    Regards,
    Mahesh

    in reply to: Make content area wider, right sidebar narrower #93520
    Mahesh
    Member

    @catwingz: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .two-columns #primary {
        width: 900px;
    }
    
    .two-columns #secondary {
        width: 250px;
    }
      
    @media screen and (max-width: 1280px) {
        .two-columns #primary {
            width: 840px;
        }
    }
    
    @media screen and (max-width: 1152px) {
        .two-columns #primary {
            width: 780px;
        }
    }
    
    @media screen and (max-width: 1100px) {
        .two-columns #primary {
            width: 700px;
        }
    }
      
    @media screen and (max-width: 1000px) {
        .two-columns #primary {
            width: 640px;
        }
    }
      
    @media screen and (max-width: 940px) {
        .two-columns #primary {
            width: 530px;
        }
      
        .two-columns #secondary {
            width: 200px;
        }
    }
    
    @media screen and (max-width: 782px) {
        .two-columns #primary {
            width: 100%;
        }
      .two-columns #secondary {
            width: 620px;
        }
    }
    
    @media screen and (max-width: 640px) {
        .two-columns #secondary {
            width: 520px;
        }
    }
    
    @media screen and (max-width: 568px) {
        .two-columns #secondary {
            width: 560px;
        }
    }
    
    @media screen and (max-width: 480px) {
        .two-columns #secondary {
            width: 100%;
        }
    }

    Regards,
    Mahesh

    in reply to: Woocommerce Compatibility #93515
    Mahesh
    Member

    @itan317: Woocommerce is only supported in Clean Journal Pro version. I recommend you upgrade to Pro.

    Regards,
    Mahesh

    in reply to: Disable Header Image on Mobile Device #93513
    Mahesh
    Member

    @friarpaul: Please post in your site url. In the following link, I didn’t find any header image.
    http://test2.franciscandiscernment.org/
    Let me know further.

    Regards,
    Mahesh

    in reply to: Infinite scroll no longer workingq #93512
    Mahesh
    Member

    @thetravelgal: How many posts do you have? And how many most posts per page have you set? Currently only 7 posts are displaying.
    Let me know further.

    Regards,
    Mahesh

Viewing 20 posts - 3,441 through 3,460 (of 4,888 total)