Forum Replies Created

Viewing 20 posts - 721 through 740 (of 2,016 total)
  • Author
    Posts
  • in reply to: Add the new field in customizer featured slider #109943
    Pratik
    Participant

    Hi @shahid864,

    In your child theme , create a function to add just that link and hook it to customize_register hook. E.g:

    
    function clean_business_add_slider_link_2( $wp_customize ){
        $featured_slider_number = apply_filters( 'clean_business_get_option', 'featured_slider_number' );
    
        //loop for featured post sliders
        $priority   =   '11';
        for ( $i=1; $i <=  $featured_slider_number ; $i++ ) {
            $wp_customize->add_setting( 'featured_link_2_'. $i, array(
                'capability'        => 'edit_theme_options',
                'sanitize_callback' => 'esc_url_raw',
            ) );
    
            $wp_customize->add_control(  'featured_link_2_'. $i, array(
    			'active_callback' => 'clean_business_is_image_slider_active',
    			'label'           => esc_html__( 'Link 2', 'clean-business-pro' ),
    			'priority'        => $priority . '.' .$i . $i  . $i,
    			'section'         => 'clean_business_featured_slider',
    			'settings'        => 'featured_link_2_'. $i,
            ) );
        }
    }
    add_action( 'customize_register', 'clean_business_add_slider_link_2' );
    
    in reply to: Homepage Featured Content text links #109938
    Pratik
    Participant

    I think I saw your reply but it is not here?

    in reply to: WPML and Clean business problems #109937
    Pratik
    Participant

    Hi @Hans-Rudolf,

    More option is in Appearance=> Customize=> Theme Options=> Excerpt Options=> Read More Text

    To decrease side description font size, use following code in Appearance=> Customize=> Additional CSS box:

    
    .site-description {
        font-size: 10px; /* Increase/decrease addording to your need /*
    }
    

    Regards,
    Pratik

    Pratik
    Participant

    Hi @Rossana,

    As long as the solution works :). Let me know if you have further issues.

    Regards,
    Pratik

    in reply to: Clean Business Free – Excerpt Image Placement #109933
    Pratik
    Participant

    Hi @bill@dieballsailing.com,

    I cannot understand exactly what you mean. Can you share a screenshot of your problem? You can use dropbox, gdrive or something else to share image.

    Regards,
    Pratik

    in reply to: WPML and Clean business problems #109932
    Pratik
    Participant

    Hi @Hans-Rudolf,

    Can you post your site url so I can check it?

    Regards,
    Pratik

    in reply to: Full Frame Pro – Front page image slider #109931
    Pratik
    Participant

    Hi @Garret,

    This is strange. I will need your admin credentials to check the issue. I will email you shortly.

    Regards,
    Pratik

    in reply to: home slider image height #109930
    Pratik
    Participant

    Hi @bluesboy80,

    You need to use a different slider. In this theme, the background image is set and used as slider to get that full background slider look, so it is not possible.

    Regards,
    Pratik

    in reply to: Increase size of title font on home page feature slider #109929
    Pratik
    Participant

    Hi @F,

    Please use following code:

    
    #featured-content .entry-title, #feature-slider .entry-title, #header-featured-image .entry-title, #header-highlights-content .entry-title {
       font-size: 24px; /*Increase/decrease font-sized , Default is 22px*/
    }
    
    @media screen and (min-width: 910px) { 
        #featured-content .entry-title, #feature-slider .entry-title, #header-featured-image .entry-title, #header-highlights-content .entry-title {
            font-size: 30px; /*Increase/decrease font-sized , Default is 28px*/
        }
    }
    

    Regards,
    Pratik

    in reply to: Security certificate problem with mobiles #109928
    Pratik
    Participant

    Hi @maviedecielia,

    Maybe that is the case. I have not stumbled upon this kind of issue previously, 🙁 so I am not 100% sure.

    Regards,
    Pratik

    in reply to: Make space between image and logo smaller #109927
    Pratik
    Participant

    Hi @wouwonline,

    It depends on which one you want. for basic h2 and h3, just do following:

    
    h2, h3 {
        color: #f2f2f2; /* Change this value to your desired hex color */
    }
    

    For layouts, try following:`

    
    @media screen and (min-width: 961px) {
        #primary { width: 75%; }
        #secondary { width: 24%; }
    }
    

    Let me know how it goes.

    Regards,
    Pratik

    in reply to: read more link & read more button #109926
    Pratik
    Participant

    Thank you for the review 😀

    in reply to: Change title font spacing #109918
    Pratik
    Participant

    Hi @F,

    Try following code:

    
    .page-title,
    .entry-title,
    .section-title {
        letter-spacing: 0.1vw;
    }
    

    Regards,
    Pratik

    in reply to: Menu renders invisible on lower resolutions #109917
    Pratik
    Participant

    Hi @nijn,

    Glad it worked out.

    Regards,
    Pratik

    in reply to: How to remove "posted in" category and tags #109916
    Pratik
    Participant

    Hi @F,

    Glad it worked out.

    Regards,
    Pratik

    in reply to: How to change font on primary top menu #109915
    Pratik
    Participant

    Font for primary menu and body can be set different if you need.

    in reply to: How to change font on primary top menu #109913
    Pratik
    Participant

    Hi @F,

    If you want google font or other online fonts first you need to add this code:

    
    @font-face {
        font-family: myCustomFont;
        src: url('link_to_source');
    }
    

    If your font is websafe, no need to do above.

    Then, for primary menu, try following code:

    
    #site-header-menu {
        font-family: myCustomFont;
    }
    

    Regards,
    Pratik

    in reply to: Homepage Featured Content text links #109911
    Pratik
    Participant

    Hi @jean,

    Can you post in your site url?

    Regards,
    Pratik

    in reply to: Make image full-width #109910
    Pratik
    Participant

    Hi @Laura,

    If is because images have margons. Use following code in Appearance=> Customize=> Additional CSS box:

    
    .home #content img {
        margin: 0;
        width: 100%;
    }
    

    Regards,
    Pratik

    in reply to: Change color of the Promotion Headline Button #109903
    Pratik
    Participant

    Hi @malini,

    Try following code in Appearance=> Customize=> Additional CSS box:

    
    #promotion-message .right a {
        background-color: #fff;
        -webkit-background-color: #fff;
        -moz-background-color: #fff;
    }
    

    Change #fff to any hex color you desire.

    Regards,
    Pratik

Viewing 20 posts - 721 through 740 (of 2,016 total)