Forum Replies Created

Viewing 20 posts - 3,681 through 3,700 (of 4,888 total)
  • Author
    Posts
  • in reply to: Same size font on p and pre #91285
    Mahesh
    Member

    @taher: Thank you for using Catch Kathmandu Pro theme.
    If you do not like to use responsive mode, you can disable it through customizer. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Responsive Design and check on Check to Disable Responsive Design option.
    #1 p and pre show same size when I set font size same:
    This can be done by using Custom CSS. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    p, 
    pre {
        font-size: 20px;
    }

    Note:
    * Adjust the font size as per you required.
    * This will override the font size option in customizer.

    #2 how can Increase maximum word on post:
    If you have phpMyAdmin you can simply change the post_content field from TEXT to LONGTEXT.

    Regards,
    Mahesh

    in reply to: Hide Top Nav & Header Bar #91241
    Mahesh
    Member

    @brendonh: For that, please use the following CSS:

    .page.page-id-760 #fixed-header,
    .page.page-id-760 #masthead,
    .page.page-id-760 #colophon {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Hide Top Nav & Header Bar #91238
    Mahesh
    Member

    @brendonh: Do you mean to hide the nav bar and masthead div on pages only? If so, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .page:not(.home) #fixed-header, 
    .page:not(.home) #masthead {
        display: none;
    }

    Let me know if this is not what you wanted or any problem. Please post in your site URL.

    Regards,
    Mahesh

    in reply to: Changing Page Title font/look #91226
    Mahesh
    Member

    @gaiabee: This can be achieved with Custom CSS. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #content .page .entry-header .entry-title {
        font-size: 35px;
        font-weight: bold;
        color: #ba4ba4;
    }

    Note: Default font-size for page title is 30px.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: number of featured contents on homepage #91224
    Mahesh
    Member

    @pulsedata: Thank you for your appreciation. Glad to know your issue is resolved. If you like my support and Catch Everest theme then please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/catch-everest?rate=5#postform

    Have a nice day!

    Regards,
    Mahesh

    in reply to: adding google translate buttons in the head #91223
    Mahesh
    Member

    @nagesh-seogmail-com: First you must create a child theme. For more details on creating child theme, go to this LINK. Then in your child theme’s functions.php, copy and paste the above function i.e. catchresponsive_header_right (you can find the function in catch-responsive/inc/catchresponsive-structure.php file). Then in the function, replace the following code with the Gtranslate’s shortcode:

    <?php if ( '' != ( $catchresponsive_social_icons = catchresponsive_get_social_icons() ) ) { ?>
        <section class="widget widget_catchresponsive_social_icons" id="header-right-social-icons">
            <div class="widget-wrap">
                <?php echo $catchresponsive_social_icons; ?>
            </div><!-- .widget-wrap -->
        </section><!-- #header-right-social-icons -->
    <?php
    } ?>

    Replace With the following:
    <?php echo do_shortcode(‘[GTranslate]’); ?>
    Hope this helps.
    If you are not much familiar with coding, I recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: Cannot change the icon on a Child Theme #91222
    Mahesh
    Member

    @lepos: Sorry for late reply. The update is now availabe @ WordPress.org repository. Please update to the latest version (2.3.1). Let me know if any problem.
    Have a nice day!

    Regards,
    Mahesh

    Mahesh
    Member

    @southpaw: Please find the code in the link below and paste it in your functions.php (Please remove previous slider function in your child theme).
    http://goo.gl/NhkX9z
    Replace the following line in the above function with your calendar’s code.

    <div class="calendar"><!-- Calendar Start -->
        Your Calendar Code Goes HERE!!!
    </div><!-- Calendar End -->

    Regards,
    Mahesh

    in reply to: reduce white space header #91219
    Mahesh
    Member

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

    Regards,
    Mahesh

    in reply to: Centering buttons #91217
    Mahesh
    Member

    @jakeab: Its a bit difficult to provide the solution to the issue without checking the HTML. But I’m glad that <center> tag resolved the problem and fixed the issue by yourself. Have a nice day.

    Regards,
    Mahesh

    in reply to: reduce white space header #91142
    Mahesh
    Member

    @uschelbert: Use the following CSS:

    #header-right, 
    #header-image {
        padding: 0;
    }

    Hope this helps, let me know if any problem.

    Regards,
    Mahesh

    in reply to: Logo Size – Logo automatic rescaled! #91141
    Mahesh
    Member

    @klausm: Thank you for using Catch Everest Pro.
    You can use desired size of image for the logo in this theme. If you already have an image of size 184×200 the click add image in Dashboard=> Appearance=> Customize=> Site Identity, select that image and them as it ask for cropping the image, click skip cropping button, then you’ll get the logo of the size that you wanted. Let me know if any problem.

    Regards,
    Mahesh

    Mahesh
    Member

    @southpaw: If you are trying to modify Catch Adaptive’s Featured Slider, you don’t need to copy the whole catchadaptive-featured-slider.php. Just copy catchadaptive_demo_slider or catchadaptive_page_slider function whichever you want to override to your child theme’s functions.php file, and then modify the code as per your requirement.

    Regards,
    Mahesh

    in reply to: widget with ''Magic action box" after post #91139
    Mahesh
    Member

    @asumi: By “Magic Action Button” do you mean subscribe form? If so, it is in the sidebar just below the search. Let me know further, if any problem.

    Regards,
    Mahesh

    in reply to: Custom CSS to Hide Post Title not working #91138
    Mahesh
    Member

    @live2bfree: Seems this is a single post and not page, so the above will not work, use the following CSS:

    .single #content .entry-header {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Logo/Banner Size #91136
    Mahesh
    Member

    @jonashegnauergmail-com: The recommended size for the logo is 150×150 but you can use your desired image size. As you select an image, it will ask you to crop image. You can either crop the image to the desired size or skip cropping and use the full image as well.
    For removing the search field, go to Dashboard=> Appearnace=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .sidebar-header-right {
        display: none;
    }

    Or you can remove it using Child theme, you can find more on creating child theme HERE.

    Regards,
    Mahesh

    in reply to: Customized bullet point and font of list #91134
    Mahesh
    Member

    @stefanhoesli: May be you have some Custom CSS overriding the Font style in Customizer. Please post in your site URL.

    Regards,
    Mahesh

    in reply to: Centering buttons #91133
    Mahesh
    Member

    @jakeab: Please post in your site URL.

    Regards,
    Mahesh

    in reply to: Posts are not displayed at homepage #91126
    Mahesh
    Member

    @faranguiz: I checked your site, seems you are using static front page, go to Dashboard=> Appearance=> Customize=> Static Front Page and select Your Latest Posts in Front page displays. And by the way, which plugin are you using for the translation?

    Regards,
    Mahesh

    in reply to: hide sidebar in mobile mode #91088
    Mahesh
    Member

    @mupa: As per your requirement (hide in mobile mode only), this can be only done with CSS and hiding is the ONLY option. But if you do want to remove the whole sidebar section (Prevent Loading) from certain page then this can be done too. For that, go Dashboard=> Pages and edit the page you want to hide the sidebar in and scroll down to Catch Adaptive Options and select No Sidebar (Full Width) in Layout Options and click update.
    Same can be done for posts too.
    Hope this helps.

    Regards,
    Mahesh

Viewing 20 posts - 3,681 through 3,700 (of 4,888 total)