Forum Replies Created

Viewing 20 posts - 3,441 through 3,460 (of 4,908 total)
  • Author
    Posts
  • in reply to: How to change first page thubnail's size #93833
    Mahesh
    Participant

    @leonardo-martinez: Have you used the Regenerate Thumbnails plugins to regenerate new sized thumbnails? You have to run it once you’ve changed the image size.
    Find the plugin in the link below.
    https://wordpress.org/plugins/regenerate-thumbnails/

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Make content area wider, right sidebar narrower #93832
    Mahesh
    Participant

    @catwingz: Looking forward for it too. Have a nice day! 🙂

    Regards,
    Mahesh

    in reply to: Image captions and footer background #93831
    Mahesh
    Participant

    @catwingz: Sorry, I had replied to the thread but for some reasons, the reply is gone. I am glad that you fixed the issue yourself. Let me know if any problem.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: change site tittle and tagline sizes #93830
    Mahesh
    Participant

    @luismarioochoa: Please follow along.

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

    #feature-slider .entry-container {
        background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0;
        border-radius: 4px;
    }

    2. Do you mean Continue Reading link? If so, this will automatically show as excerpt is displayed. You can set excerpt length in Dashboard=> Customize=> Theme Options=> Excerpt Options and set length in Excerpt Length.

    3. Please attach an image to clarify more.

    Regards,
    Mahesh

    in reply to: Amazon Buy button #93829
    Mahesh
    Participant

    @kelsantana: Please remove the previous and use the following CSS:

    .entry-content a.my_button {
        background-color: #0000FF;
        border-radius: 5px;
        padding: 8px;
        color: #fff;
    }
    .entry-content a.my_button:hover {
        text-decoration: none;
    }

    Note: Please add my_button class to the link you want to make button.

    Regards,
    Mahesh

    in reply to: Use a slider widget as header image #93747
    Mahesh
    Participant

    @friarpaul: For this you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s functions.php add the following codes.

    add_action('init', 'catchbase_child_move_header_right_sidebar_above_site_title');
    function catchbase_child_move_header_right_sidebar_above_site_title() {
    	remove_action( 'catchbase_header', 'catchbase_site_branding', 40 );
    	remove_action( 'catchbase_header', 'catchbase_header_right', 50 );
    	add_action( 'catchbase_header', 'catchbase_header_right', 40 );
    	add_action( 'catchbase_header', 'catchbase_site_branding', 50 );
    }

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

    .sidebar-header-right, .sidebar-header-right .widget-wrap {
        float: none;
    }

    Regards,
    Mahesh

    in reply to: center menu #93746
    Mahesh
    Participant

    @vivialmonacidgmail-com: Have you fixed the problem? Let me know if you need any help.

    Regards,
    Mahesh

    in reply to: Amazon Buy button #93745
    Mahesh
    Participant

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

    .entry-content a {
        background-color: #eee;
        border-radius: 5px;
        padding: 8px;
    }
    .entry-content a:hover {
        text-decoration: none;
    }

    Note: Please change the background-color as you desire.

    Regards,
    Mahesh

    in reply to: Border around Header in Boxed layout #93675
    Mahesh
    Participant

    @inmercyrejoice: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Use a slider widget as header image #93674
    Mahesh
    Participant

    @friarpaul: For that you can use any slider widget plugin from https://wordpress.org/plugins/ and then use that widget in Header Right Sidebar area. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: change site tittle and tagline sizes #93673
    Mahesh
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @kelsantana: Please post in your site url.

    Regards,
    Mahesh

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

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

    in reply to: Sidebar Menu #93605
    Mahesh
    Participant

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

    Regards,
    Mahesh

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