Forum Replies Created

Viewing 20 posts - 501 through 520 (of 4,903 total)
  • Author
    Posts
  • in reply to: Hide header featured image? #116313
    Mahesh
    Participant

    @janetmmorris: Is the issue still persisting?

    Regards,
    Mahesh

    in reply to: Include featured image in search results #116312
    Mahesh
    Participant

    @rawikltd: Please make sure you have set featured images on the posts.

    Regards,
    Mahesh

    in reply to: Image gallery #116311
    Mahesh
    Participant

    @franz: Please contact the plugin support.

    Regards,
    Mahesh

    in reply to: Banner is missing after updating WP Core #116303
    Mahesh
    Participant

    @mark-argentino: The menu seems to be displaying and working fine on your site. However, I cannot find the extra text with the link. How have you managed to have it previously. For the social icons color, go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    .social-profile ul li.facebook a {
        background-position: 0 -44px;
    }
    
    .social-profile ul li.twitter a {
        background-position: -44px -44px;
    }
    
    .social-profile ul li.google-plus a {
        background-position: -528px -44px;
    }
    
    .social-profile ul li.linkedin a {
        background-position: -176px -44px;
    }
    
    .social-profile ul li.wordpress a {
        background-position: -572px -44px;
    }
    
    .social-profile ul li.rss a {
        background-position: -88px -44px;
    }
    
    .social-profile ul li.email a {
        background-position: -837px -44px;
    }

    Regards,
    Mahesh

    in reply to: Include featured image in search results #116302
    Mahesh
    Participant

    @rawikltd: Please try disabling the plugins and try if that fixes the issue.

    Regards,
    Mahesh

    in reply to: Hide header featured image? #116298
    Mahesh
    Participant

    @janetmmorris: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Layout Options and select Disabled in Single Page/Post Image Layout option.

    Regards,
    Mahesh

    Mahesh
    Participant

    @mmarvel54: Do you mean to hide slider container and the dots in mobile device? If yes, go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    @media screen and (max-width: 767px) {
    	#feature-slider .entry-container, 
    	#feature-slider .cycle-pager {
    		display: none;
    	}
    }

    Regards,
    Mahesh

    in reply to: import demo/dummy data #116295
    Mahesh
    Participant

    @amburmj: Now there is no dummy data for importing. You’ll need to put it manually.
    For similar display as demo:
    1. Demo slider: Go to Dashboard=> Appearance=> Customize=> Featured Slider and select Demo slider in Slider Type option.
    2. Tours Widget: Go to Dashboard=> Appearance=> Widgets, add Tours widget into Before Content widget area. Follow along, fill up the data.
    3. Videos Embeds Widget: Go to Dashboard=> Appearance=> Widgets, add Video Embeds widget into Before Content widget area. Follow along, fill up the data.
    4. About Widget: Go to Dashboard=> Appearance=> Widgets, add About widget into After Content widget area. Follow along, fill up the data.
    5. Instagram Widget: Go to Dashboard=> Appearance=> Widgets, add Instagram widget into After Content widget area. Follow along, fill up the data.

    Hope this helps.

    Regards,
    Mahesh

    in reply to: Footer menu not displayed on mobile devices #116294
    Mahesh
    Participant

    @maciejrzeszutko: Oh yes :). Well, there is a small bug in the theme, this will be fixed in the next update. We’ll let you know as soon as the update is released.

    Regards,
    Mahesh

    in reply to: How to make content wrap sidebar #116293
    Mahesh
    Participant

    @legendsofamerica: This is a boxed theme and max-width is 1200px. If you like to have full-width, I recommend you to use full-width themes.
    Hiding sidebar in mobile devices is possible with Custom CSS. Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    @media screen and (max-width: 767px) {
        .sidebar-primary {
        	display: none;
        }
    }

    Regards,
    Mahesh

    in reply to: Home page featured area #116290
    Mahesh
    Participant

    @artisanwebsites: Sorry, the theme does not support that feature. There was some mistake in theme instructions which will be corrected shortly. Hope you understand. In demo, the widgets Tours, Videos etc are put in Before Content widget area and About in After Content widget area.

    Regards,
    Mahesh

    in reply to: Change content on courses, professors etc. #116248
    Mahesh
    Participant

    @dan_4652: If you have any plugins installed, try disabling the plugins and check if the resolves the issue. Let me know further. Please post in your site url.

    Regards,
    Mahesh

    in reply to: Featured content title not centered #116242
    Mahesh
    Participant

    @jmbtravel: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
    #featured-post .featured-homepage-image {
    display: inline-block;
    }

    Regards,
    Mahesh

    in reply to: Widget background image not changing #116241
    Mahesh
    Participant

    @dosk: There has been a small bug in the theme. This will be fixed in the next update. We’ll let you know as soon as the update is released.

    Regards,
    Mahesh

    in reply to: Exclude sticky posts from Home.php #116239
    Mahesh
    Participant

    @mohanghabo: 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( 'pre_get_posts', 'adventurous_child_ignore_sticky' );
    function adventurous_child_ignore_sticky( $query ) {
        if ($query->is_main_query() && $query->is_home()) 
        {
            $query->set( 'ignore_sticky_posts', 1 );
        }
    }

    Regards,
    Mahesh

    in reply to: Text Color in http://csc-celtic.com/tourdates #116237
    Mahesh
    Participant

    @csc_geordie: Thank you for your appreciation. If you like my support then please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/rock-star?rate=5#postform
    Have a nice day!

    Regards,
    Mahesh

    in reply to: Submit Button in Search Field #116236
    Mahesh
    Participant

    @bjbarker: Thank you for your appreciation. If you like my support and Catch Adaptive theme then please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/catch-adaptive?rate=5#postform
    Have a nice day!

    Regards,
    Mahesh

    in reply to: Remove Opacity From Menu #116225
    Mahesh
    Participant

    @dosk: Add the following CSS:

    #masthead {
        background: #000;
    }

    Regards,
    Mahesh

    in reply to: Text Overlay #116223
    Mahesh
    Participant

    @analog2112: Add the following CSS:

    .slider-contents {
        top: 60%;
    }

    Note: You can adjust the value as desired.

    Regards,
    Mahesh

    in reply to: Showing Header Image Only on Front Page #116222
    Mahesh
    Participant

    @nimadude: I’ve changed the conditions in the above, it will work now on static pages as well. Please check. Let me know if any problem.

    Regards,
    Mahesh

Viewing 20 posts - 501 through 520 (of 4,903 total)