Forum Replies Created

Viewing 20 posts - 1,461 through 1,480 (of 4,908 total)
  • Author
    Posts
  • in reply to: Font sizes changed outside of admin mode #108427
    Mahesh
    Participant

    @cableman145: Please try changing the theme to WordPress default themes and check if the issue persist. If the issue persist in other themes too, this is not a theme issue. If everything works fine in default theme, please try doing a clean reinstall of the theme and check again. Let me know if the problem persists.

    Regards,
    Mahesh

    in reply to: font family #108425
    Mahesh
    Participant

    @floh: Can you please let me know where is folder and flyer text? The body font is set to sans-serif. Let me know further.

    Regards,
    Mahesh

    in reply to: Swap logo file for mobile? #108424
    Mahesh
    Participant

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

    @media screen and (max-width: 767px) {
        #site-logo .custom-logo-link {
            display: none;
        }
    
        #site-logo {
            background-image: url('http://integrationmassage.com/wp-content/uploads/2016/02/stacked-logo-banner-2.jpg');
        	height: 130px;
        	background-size: cover;
            background-repeat: no-repeat;
        }
    }

    Note: Please change the image url as desired.

    Regards,
    Mahesh

    in reply to: Issues with Header in Text Resizing #108423
    Mahesh
    Participant

    @hellohillory: Its because of the bigger text size in the header. Go to Dashboard=> Appearance=> Customize=> Additional CSS and add the following CSS:

    @media screen and (max-width: 420px) {
        #header-featured-image .entry-title {
            font-size: 20px;
        }
    }

    The above CSS will decrease the font-size in devices with max-width 420px. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Primary Menu Missing After Update #108422
    Mahesh
    Participant

    @cranburypl: Just checked your site and the primary menu is displaying fine. Let me know if any problem.

    @malodk02
    : Glad to know your problem is fixed.

    Regards,
    Mahesh

    in reply to: How to change images in main image slider ? #108421
    Mahesh
    Participant

    @gantier: If you want to change the image in demo, you’ll need to create a child theme and override the demo slider function and change the image url to your custom image you want. But if you are trying to have custom image of your own in the slider, I recommend you to upgrade to Pro version. Pro version has features to add custom image and text in the slider.

    Regards,
    Mahesh

    in reply to: Menu pops up under footer #108420
    Mahesh
    Participant

    @valdibeer: Its the Mobile top menu items. As your site is loading a bit slow, it appears at the bottom for a while. Does the same happens in our demo too? Let me know further.
    https://catchthemes.com/demo/catch-flames/

    Regards,
    Mahesh

    in reply to: Clean Business pro child theme add new area in customizer #108419
    Mahesh
    Participant

    @shahid84: You can add the additional option to the customizer via child theme as below. Add the following codes in your child theme’s functions.php file.

    function clean_business_child_customize_register( $wp_customize )
    {   
        $wp_customize->add_section( 'my_section', array(
            'description'   => esc_html__( 'This Is My Custom Section', 'clean-business-pro' ),
            'priority'      => 105,
            'title'         => esc_html__( 'My Section', 'clean-business-pro' ),
        ) );
    
        $wp_customize->add_setting( 'some_field', array(
            'capability'        => 'edit_theme_options',
            'sanitize_callback' => 'sanitize_text_field'
        ) );
    
        $wp_customize->add_control( 'some_field', array(
            'label'  => esc_html__( 'Some Text Field', 'clean-business-pro' ),
            'section' => 'my_section',
            'settings' => 'some_field',
            'type'   => 'text',
        ) );
    }
    add_action( 'customize_register', 'clean_business_child_customize_register' );

    If you are not familiar with this or coding, I recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: font family #108341
    Mahesh
    Participant

    @floh: I checked your site and the title and normal text are using same font. But if you want to change to another font, go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    body, 
    .entry-title {
        font-family: Times New Roman;
    }

    Note: Please change the font family as you desire.

    Regards,
    Mahesh

    in reply to: font family #108336
    Mahesh
    Participant

    @floh: Can you please provide me the url of the page for reference.

    Regards,
    Mahesh

    in reply to: How to make the content area transparent #108334
    Mahesh
    Participant

    @candice: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    .site-content {
        background-color: transparent;
    }

    Regards,
    Mahesh

    in reply to: Widen all my pages and decrease the sidebar #108322
    Mahesh
    Participant

    @lena: Go to Dashboard=> Appearance=> Customize=> Customize=> Additional CSS box and add the following CSS:

    .two-columns #primary {
    	width: 80%;
    }
    
    .two-columns #secondary {
    	width: 19%;
    }

    Regards,
    Mahesh

    in reply to: Footer text #108318
    Mahesh
    Participant

    @candice: Glad to know you’ve managed it. Thank you for you appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Font sizes changed outside of admin mode #108317
    Mahesh
    Participant

    @cableman145: Are you using any plugins? If yes, please try disabling it and check again. Found no such issue on our server. Please check the demo.
    https://catchthemes.com/demo/parallax-frame/
    Let me know further.

    Regards,
    Mahesh

    in reply to: Social Icons Header Right #108315
    Mahesh
    Participant

    @qetellocaro: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    @media screen and (min-width: 991px){
        #masthead {
    	position: relative;
        }
    
        .sidebar-header-right {
    	position: absolute;
            top: 0;
            right: 50px;
        }
        
        #search-toggle {
            position: absolute;
            top: -151px;
            right: 0;
            background-color: #000;
        }
        #search-toggle:hover {
            background-color: #000;
            color: #fff;
        }
    }    
    @media screen and (min-width: 991px) and (max-width: 1100px) {
        #search-toggle {
              top: -122px;
        }
    }
    
    @media screen and (min-width: 1101px) and (max-width: 1151px) {
        #search-toggle {
              top: -132px;
        }
    }
    
    @media screen and (min-width: 1152px) and  (max-width: 1280px) {
        #search-toggle {
              top: -138px;
        }
    }

    Regards,
    Mahesh

    in reply to: How to make the content area transparent #108311
    Mahesh
    Participant

    @candice: Which theme are you using? I just checked your site, you are using a different theme. Let me know further.

    Regards,
    Mahesh

    in reply to: comment box #108310
    Mahesh
    Participant

    @azeaka: Go to Dashboard=> Appearance=> Add/Edit posts, click Screen Options on the left top just beside the Help button. So options scroll down. Check on Discussion checkbox. Then scroll down to Discussion options and check on Allow Comments checkbox. Then click save/update.

    Regards,
    Mahesh

    Mahesh
    Participant

    @thewebmistress: This is not possible. However, you can modify the function by copying it to child theme’s functions.php and override it. Hope you understand.

    Regards,
    Mahesh

    in reply to: Move author and date to CPT footer #108307
    Mahesh
    Participant

    @kejpa: You’ll need to add the following code where you display the custom posts.
    <?php catchbase_entry_meta(); ?>

    Regards,
    Mahesh

    in reply to: Problem with mobile menu #108306
    Mahesh
    Participant

    @mailhunter: The menu script has been modified, sidr menu is no longer in use, so you won’t have this problem anymore. The update will be released soon.

    Regards,
    Mahesh

Viewing 20 posts - 1,461 through 1,480 (of 4,908 total)