Forum Replies Created

Viewing 20 posts - 3,441 through 3,460 (of 4,903 total)
  • Author
    Posts
  • 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

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

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

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

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

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

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

    Regards,
    Mahesh

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