Forum Replies Created

Viewing 20 posts - 9,921 through 9,940 (of 12,034 total)
  • Author
    Posts
  • in reply to: Resize thumbnails on blog page #158324
    Skandha
    Participant

    @nikonn: I’m afraid that the option to change the position of the excerpt to left or right of the featured image is not available in the theme. If you really need this I suggest you to hire a customizer.

    Kind Regards,
    Skandha

    in reply to: My Music Band Pro — Pop Up Email Sign Up #158318
    Skandha
    Participant

    @blakey0320: You will need to Signup with Mailchimp to use a Pop up form. Maybe this article will help you out.

    Let me know if this helps you out!
    Kind Regards,
    Skandha

    in reply to: Add Whatsapp icon in social menu #158236
    Skandha
    Participant

    @wouwonline: Yes, that is possible. Go to => Appearance => Menus => At the top right corner you will find Screen Options click on it and Check Link target check box.

    Now, when you edit the Social Menu you will find a Open link in a new tab checkbox option under every social menu item. Check the box and now the social menu item should open in a new tab on click.

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Date visible in Blog on homepage #158235
    Skandha
    Participant

    @wouwonline: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    #post-199 .entry-meta {
         display:none;
    }

    Let me know if this is what you want.
    Kind Regards,
    Skandha

    in reply to: Add Whatsapp icon in social menu #158227
    Skandha
    Participant

    @wouwonline: No, not from the WordPress dashboard.
    Go to => Your Child Theme Folder => style.css and add the above code.

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: selective image caption alignment #158225
    Skandha
    Participant

    @abisbee: I’m afraid you will need to add CSS code to selectively center align the captions. If you can let me know which captions you want to center align I could provide you the necessary codes.

    Kind Regards,
    Skandha

    in reply to: Demo Content #158223
    Skandha
    Participant

    @chrishaught: I will need your WP admin credentials to setup the demo for you. I will contact you shortly by email.

    Kind Regards,
    Skandha

    in reply to: Categories Layout #158222
    Skandha
    Participant

    @jazart72: The issue will be fixed in the next theme update. For now,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .category.two-columns-layout #primary {
         width:100%;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Resize thumbnails on blog page #158209
    Skandha
    Participant

    @nikonn: Please post in your site URL so that I can look into the issue.

    Kind Regards,
    Skandha

    in reply to: Change Blog Header Title #158204
    Skandha
    Participant

    @joeywickham: Hello Joey,

    First you will need to create a child theme and for that you can use Generate Child Theme Plugin. Download and activate the plugin, after activation you will get the Generate Child Theme tab on your dashboard. Click on it which will take you to the plugin dashboard. Now Select parent theme as Catch Fullscreen Pro and give your child theme’s name catch-fullscreen-pro-child and fill up the remaining form and click on Generate. Now, this will activate the child theme and create a child theme directory on wp-content/themes as catch-fullscreen-pro-child.

    Now, Go to => catch-fullscreen-pro-child => funtions.php and add the following Code.

    function catch_fullscreen_header_title( $before = '', $after = '' ) {
    		if ( is_front_page() ) {
    			$header_media_title = get_theme_mod( 'catch_fullscreen_header_media_title', esc_html__( 'Dancing Under The Sky', 'catch-fullscreen-pro' ) );
    
    			if ( $header_media_title ) {
    				echo $before . wp_kses_post( $header_media_title ) . $after;
    			}
    		} elseif ( is_singular() ) {
    			if ( is_page() ) {
    				if( ! get_theme_mod( 'catch_fullscreen_single_page_title' ) ) {
    					the_title( $before, $after );
    				}
    			} else {
    				the_title( $before, $after );
    			}
    		} elseif ( is_404() ) {
    			echo $before . esc_html__( 'Nothing Found', 'catch-fullscreen-pro' ) . $after;
    		} elseif ( is_search() ) {
    			/* translators: %s: search query. */
    			echo $before . sprintf( esc_html__( 'Search Results for: %s', 'catch-fullscreen-pro' ), '<span>' . get_search_query() . '</span>' ) . $after;
    		} else {
    			echo 'Blog';
    		}
    	}

    This should change your blog page title from Archives to Blog.
    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Server Display #158202
    Skandha
    Participant

    @mmhgloba: Hello Edwin,
    I have replied to the above issue. Please check and let me know if the issue is resolved.

    Kind Regards,
    Skandha

    in reply to: Search Display #158201
    Skandha
    Participant

    @mmhgloba: Go to => Appearance => Customize => Theme Options => Content Featured Image Options => Select Full Image

    Let me know if this solves the issue.
    Kind Regards,
    Skandha

    in reply to: gap between content and featured slider #158140
    Skandha
    Participant

    @toerfiets: Glad I could help you out. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: Section title gets obscured #158125
    Skandha
    Participant

    @hoiung: It is difficult to maintain the menu in smaller screens as you have a big logo and site title. I tried altering the CSS but then the menu item font size became very small. I think the best option for you will be to use Modern Menu Style from Menu Option.

    To enabling normal scrolling
    Go to => Appearance => Customize => Theme Options => FullPage Options => Check to enable Normal Scrolling

    Let me know if this helps you out!

    Note: We recently moved our site to a new web server. So, if you don’t receive our reply even after 1-2 days time please post a new issue in the support forum. Sorry for the inconvenience caused.

    Kind Regards,
    Skandha

    in reply to: Search Display #158119
    Skandha
    Participant

    @mmhgloba: I checked for the issue at my end but the images in the search results seems to be showing up fine. Can you try disabling all your plugins and check if the issue persists.

    Note: We recently moved our site to a new web server. So, if you don’t receive our reply even after 1-2 days time please post a new issue in the support forum. Sorry for the inconvenience caused.

    Kind Regards,
    Skandha

    in reply to: gap between content and featured slider #158118
    Skandha
    Participant

    @toerfiets: You seem to have enable Featured Content section on homepage which was empty so I have disabled that.
    Also,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .home #post-2 {
        padding-bottom:0;
    }

    Let me know if this works out!

    Note: We recently moved our site to a new web server. So, if you don’t receive our reply even after 1-2 days time please post a new issue in the support forum. Sorry for the inconvenience caused.

    Kind Regards,
    Skandha

    in reply to: Change Blog Header Title #158115
    Skandha
    Participant

    @joeywickham: It is not that hard if you are willing to give it a try. I could guide you with changing the blog page title using a child theme. I will provide you the steps and you just have to follow them.

    Note: We recently moved our site to a new web server. So, if you don’t receive our reply even after 1-2 days time please post a new issue in the support forum. Sorry for the inconvenience caused.

    Kind Regards,
    Skandha

    in reply to: Extra empty section after update #158111
    Skandha
    Participant

    @umbra989: Please check your Footer Widget Area 1,2 and 3. You must have kept an empty widget there that is the reason the black section is showing up. I checked for the blank space at my end but it did not find any blank space like yours.

    Let me know if this solves your issue.

    Note: We recently moved our site to a new web server. So, if you don’t receive our reply even after 1-2 days time please post a new issue in the support forum. Sorry for the inconvenience caused.

    Kind Regards,
    Skandha

    in reply to: Add Whatsapp icon in social menu #158106
    Skandha
    Participant

    @wouwonline: Yes, it is possible to add whatsapp icon in the social media menu.
    Go to your social menu and add a custom link and on URL text area add https://api.whatsapp.com/send?phone=15551234567. Replace the number at the last with your number that is country code and then your number. For eg: if 1 is the country code and 5551234567 is your number insert the link like this https://api.whatsapp.com/send?phone=15551234567.

    Now you seem to have already created a child theme. So,
    Go to => Child Theme Folder => style.css and add the following CSS Code.

    @font-face {
    font-family: "FontAwesome";
    font-weight: normal;
    font-style : normal;
           src : url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.eot?v=4.3.0");
           src : url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.eot?#iefix&v=4.3.0") format("embedded-opentype"),
                 url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.woff2?v=4.3.0") format("woff2"),
                 url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.woff?v=4.3.0") format("woff"),
                 url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.ttf?v=4.3.0") format("truetype"),
                 url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular") format("svg");
    }
    
    .menu-item-6197 a {
    	visibility:hidden;
    }
    .menu-item-6197 a::before {
    	content:'\f232';
    	font-family:FontAwesome;
    	visibility:visible;
    }
    a {
    	text-decoration:none;
    }

    Let me know if this works out!

    Note: We recently moved our site to a new web server. So, if you don’t receive our reply even after 1-2 days time please post a new issue in the support forum. Sorry for the inconvenience caused.

    Kind Regards,
    Skandha

    in reply to: How to change the text colour in search box widget to white? #158033
    Skandha
    Participant

    @atousa: Try removing the previous CSS Code and add the following CSS Code.

    .siteorigin-widget-tinymce p {
    	-webkit-hyphens: none;
      	-ms-hyphens: none;
      	hyphens: none;
    }

    Let me know if this removes the hyphens.

    Also, try seeing the page on Firefox and Google Chrome. I don’t think you will see the words hyphenated and overflowing to the next line.

    Kind Regards,
    Skandha

Viewing 20 posts - 9,921 through 9,940 (of 12,034 total)