Viewing 20 results - 541 through 560 (of 2,393 total)
  • Author
    Search Results
  • Mahesh
    Participant

    @engbok: For that, just disabling the slider will do what you’ve mentioned. Disabling the slider won’t load any script of the slider and won’t cause any script conflicting.
    Go to Dashboard=> Appearance=> Customize=> Featured Slider and select Disabled in Enable Slider on option.

    Regards,
    Mahesh

    #111417
    Mahesh
    Participant

    @gonace: There is no demo data for the theme, almost all demos are there available with in the theme, you just have to enable the options. Example: Featured Slider, Featured Content, New Ticker etc
    1) For widgets to be visible in only “Front Page”, you’ll need to use plugin for this.
    2) Homepage acts as single page so it is displaying Sidebar, please change Single Page/Post Layout to No Sidebar Full Width and you’ll get full width page.
    3) Checking on our server, the static page is working fine. Please post in your site url.
    Instagram widget working fine in full width.

    Regards,
    Mahesh

    #111366

    In reply to: Featured Image Slider

    Mahesh
    Participant

    @keelin:
    1. Yes, you can use Custom images and custom links on the slider. Go to Dashboard=> Appearance=> Customize=> Featured Slider and select Featured Image Slider in Select Slider Type option.

    2. Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    #hero-section .entry-header {
        display: none;
    }

    3. Please refer to the theme instruction for this.
    https://catchthemes.com/theme-instructions/parallax-frame-pro/#featured-image

    4. For this, add the following CSS:

    #site-logo a:before {
        content: " ";
        background-image: url("url-to-your-desired-image.jpg");
        display: block;
        height: 150px;
        width: 126px;
    }
     
    .header-background #site-logo a:before {
        content: none;
    }
      
    .fixed-header  #site-logo a img {
        display: none;
    }
      
    .header-background  #site-logo a img {
        display: block;
    }

    Note: Use your desired image.

    Regards,
    Mahesh

    #111295
    francesca78
    Participant

    these are the option selected

    Slider Options
    Enable Slider

    Transition Effect

    Transition Delay

    5
    Transition Length

    1
    Select Slider Type

    Number of Slides
    Customizer page needs to be refreshed after saving if number of slides is changed

    3
    Check to disable slider text Check to Exclude Slider posts from Homepage posts
    Featured Post Slider #1

    44
    Featured Post Slider #2

    41
    Featured Post Slider #3

    1

    #111265
    Pratik
    Participant

    Hi @khGeorge,

    Can you let me know what’s the option selected in Appearance => Customize => Featured Slider => Slider Options?

    Regards,
    Pratik

    #110288
    Mahesh
    Participant

    @omradiocom: You mean to place header-featured-image before Slider? If so, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in you child theme’s functions.php add the following codes.

    add_action('init', 'fullframe_child_move_featured_header_above_slider');
    function fullframe_child_move_featured_header_above_slider() {
    	remove_action( 'fullframe_before_content', 'fullframe_featured_slider', 10 );
    	remove_action( 'fullframe_before_content', 'fullframe_featured_overall_image', 20 );
    	add_action( 'fullframe_before_content', 'fullframe_featured_overall_image', 10 );
    	add_action( 'fullframe_before_content', 'fullframe_featured_slider', 20 );
    }

    Regards,
    Mahesh

    #110225
    Pratik
    Participant

    Hi @Garret,

    As you can see your site, I have added two image with non clickable links and its working fine. Please check Appearance=> Customize=> Featured Slider. You can increase the number of sliders and add in new images as desired. Please do not forget to save and refresh after you have changed slider number.

    For more info, please see Theme Instructions and check Featured Image Slider section.

    Regards,
    Pratik

    #110038
    Pratik
    Participant

    Hi @F,

    The above code will change the sizes of Featured Content Title, Slider Title a,d all other titles. On reading your request again, it seems you only want to increase size. For that, use following code:

    Please increase the size to see cgange. E.g:

    
    @media screen and (min-width: 500px) { 
        #feature-slider .entry-title { font-size: 50px; }
    }
    

    It will increase size of Text Top 8 Mountain gateway on screens with viewport greater than 500px. Please increase/decrease 52px to suite your need.

    Let me know if this is what you wanted.

    Regards,
    Pratik

    #110000
    F
    Participant

    Hi Pratik,

    Thank you.

    Could you please clarify what the first set of code controls, specifically?

    #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*/
    }

    When I change the font size of this code, I do not see changes (perhaps I am looking in the wrong place). When I change the second set of code (the part that comes after @media screen), I definitely see the title font change in the “Featured Content” section, in the body of the home page (the part in the demo that has entries such as “photo shoot” “wildlife photography”. https://catchthemes.com/demo/helena/

    However, there is no change in the title of the slider at the top of the homepage, where the posts display (“Top 8 Mountain Getaways”)

    Kindly,
    F

    #109969
    shahid864
    Participant

    what is the best way i can call that in featured slider area with first button ?

    #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' );
    
    #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

    #109828
    real_makkoy
    Participant

    Hello,
    My featured post slider is set to fade. The background color when it fades is grey. How do I change it to black while it is transitioning so it is a cleaner transition. My website is http://www.makkoy.com

    #109766
    Pratik
    Participant

    Hi @Garret,

    You need to use Featured Image Slider as slider type and either leave the Link blank.

    Regards,
    Pratik

    #109708
    F
    Participant

    Sorry, to clarify:

    Featured image is now appearing as expected on PAGES.

    On POSTS, it appears that the featured image was added to the top. What I mean by this is that the top image appears as expected, but the feature image is duplicated, appearing above the post title. Rather than replacing the full size display of the feature image with the slider/header size, it now has both.

    I have tried to fix this by editing the post: going to the bottom of the page where it says HELENA OPTIONS > SINGLE PAGE POST IMAGE. Here I select DISABLE, hoping to remove the additional image, but nothing happens. If I select another option, like making this duplicate image a smaller size such as HELENA SMALL or POST THUMBNAIL, this duplicate image does change to the smaller size. But I cannot get rid of it.

    I hope this helps to clarify the issue.

    #109702
    F
    Participant

    Thank you. Yes, this works, but now the featured image shows up twice on pages and posts. Once on top, as expected, and again below the title, only this time it’s smaller (full size, not slider size). How can I make it so that the featured image shows on the top, but doesn’t automatically duplicate itself?

    Cheers!

    #109637

    In reply to: Remove white space

    real_makkoy
    Participant

    hello,
    I also tried to use page sliders instead of the post sliders but the featured image is not showing up in 3 of the 4 of pages. http://www.makkoy.com
    IS there an error in my css?

    #main-slider .entry-title span, #main-slider .entry-content {

    }

    h6.bazinga {
    font-size: 15px;
    font-weight: bold;
    color: #645240 !important;
    }
    #featured-post #featured-post-4 {
    text-align: center;
    width: 83%;
    }

    #featured-post #featured-post-4 .entry-title {
    font-size: 16px;
    }

    #homepage-message { margin-top: 0; }

    input#s { color: #E56717; }
    a {color: #E56717;}
    Follow my blog with Bloglovin

    #main-slider .entry-title span,
    #main-slider .entry-content {
    background: none transparent;
    color: #fff;
    }
    #header-menu .menu .current-menu-item > a, #header-menu .menu .current-menu-ancestor > a, #header-menu .menu .current_page_item > a, #header-menu .menu .current_page_ancestor > a, #colophon .menu .current-menu-item a {
    background-color: #fd4905;
    color: #000000 !important;
    }
    .wpurp-container { background: dark; }

    .form-allowed-tags{
    display:none;
    }

    #109601

    In reply to: Featured Slider

    real_makkoy
    Participant

    I have updated my subscription. I am trying to change the featureds slider text from white to black. I currently have the code below in my additional css. but each time i try to change color to #000 or #000000 I get error code Markup is not allowed in CSS. How do I make this update. Thanks

    #main-slider .entry-content {
    background: none transparent;
    color: #fff;
    }

    #109399
    Mahesh
    Participant

    @luigibella: Just did the same and nothing happens. The image are no longer clickable means no link in the featured slider. May be because of caching. Please try clearing cache. Let me know further.

    Regards,
    Mahesh

    #109364
    luigibella
    Participant

    Thanks for checking, strangely enough when I check though each image(currently there are 5) is a permalink to a page(the page that is pointed to under customize-Featured Slider-Featured Page#1-#5).

    and from the homepage when I hover over the first slide I see
    Permalink to: About Us
    and if I click on it I get brought to: http://swotcentraltexas.com/about-us/

    Can you help me remove the linking to the pages?

Viewing 20 results - 541 through 560 (of 2,393 total)