Forum Replies Created

Viewing 20 posts - 421 through 440 (of 4,908 total)
  • Author
    Posts
  • Mahesh
    Participant

    @mmarvel54: In Pro version, it does include feature to change font family for Site title, Content, default font etc. For this option, go to Dashboard=> Appearance=> Customize=> Theme Options=> Font Family. If you want to change fonts and size for p, h1, h2, h3, h4, h5, you can use Custom CSS. Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    h1 {
    	font-family: "Times New Roman";
    	font-size: 30px;
    }
    
    h2 {
    	font-family: "Times New Roman";
    	font-size: 28px;
    }
    
    h3 {
    	font-family: "Times New Roman";
    	font-size: 24px;
    }
    
    h4 {
    	font-family: "Times New Roman";
    	font-size: 20px;
    }
    
    h5 {
    	font-family: "Times New Roman";
    	font-size: 18px;
    }
    
    p {
    	font-family: "Times New Roman";
    	font-size: 15px;
    }

    Note: Change the font-family and font-size as desired.

    Regards,
    Mahesh

    in reply to: Remove Hyperlink from Featured Pages #116991
    Mahesh
    Participant

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

    #featured-content .entry-header .entry-title > a {
        pointer-events: none;
    }

    Regards,
    Mahesh

    in reply to: Update to version 3.8.2 Failed #116990
    Mahesh
    Participant

    @masterchess: Do you get any error? Are you using Catch Web Tool plugins’s Catch Updater for theme updates?

    Regards,
    Mahesh

    Mahesh
    Participant

    @paedagogisches-zentrum: Sorry, you’ll need to do one more function in your child theme’s functions.php.

    function clean_education_custom_promotion_headline( $options ) {
    		$output   = '';
    
    		$title           = $options['promotion_headline_title'];
    		$content         = $options['promotion_headline_content'];
    		$button_text_1   = $options['promotion_headline_button'];
    		$button_link_1   = $options['promotion_headline_url'];
    		$button_target_1 = $options['promotion_headline_target_1'];
    		$button_text_2   = $options['promotion_headline_button_2'];
    		$button_link_2   = $options['promotion_headline_url_2'];
    		$button_target_2 = $options['promotion_headline_target_2'];
    		$button_one 	= '';
    		$button_two 	= '';
    
    		//Checking Button 1 Elements
    		if ( $button_text_1 ) {
    			if ( $button_link_1 ) {
    				//support qTranslate plugin
    				if ( function_exists( 'qtrans_convertURL' ) ) {
    					$button_link_1 = qtrans_convertURL( $button_link_1 );
    				}
    			}
    			else {
    				$button_link_1 = '#';
    			}
    
    			if ( $button_target_1 ) {
    				$button_target_1 = '_blank';
    			}
    			else{
    				$button_target_1 = '_self';
    			}
    
    			$button_one = '<span class="readmore button-one"><a href="' . $button_link_1 . '" target="' . $button_target_1 . '">' . pll__( esc_html( $button_text_1 ) ) . '</a></span>';
    		}
    
    		//Checking Button 2 Elements
    		if ( $button_text_2 ) {
    			if ( $button_link_2 ) {
    				//support qTranslate plugin
    				if ( function_exists( 'qtrans_convertURL' ) ) {
    					$button_link_2 = qtrans_convertURL( $button_link_2 );
    				}
    			}
    			else {
    				$button_link_2 = '#';
    			}
    
    			if ( $button_target_2 ) {
    				$button_target_2 = '_blank';
    			}
    			else{
    				$button_target_2 = '_self';
    			}
    
    			$button_two = '<span class="readmore button-two"><a href="' . $button_link_2 . '" target="' . $button_target_2 . '">' . pll__( esc_html( $button_text_2 ) ) . '</a></span>';
    		}
    
    		if ( $title ) {
    			$title = '<h2 class="section-title">' . pll__( $title ) . '</h2>';
    		}
    
    		if ( $content ) {
    			$content = '<p>' . pll__( $content );
    
    			if ( '' != $button_one  || '' != $button_two  ) {
    				$content .= '<span class="promotion-buttons">' . $button_one . $button_two . '</span>';
    			}
    
    			$content .= '</p>';
    		}
    
    		$output .= $title . $content;
    
    		return $output;
    	}

    Since you are not familiar with programming, here is a working child theme for you.
    http://bit.ly/2mv8jYC
    If you already have child theme, please delete it and add above one. Then go to Dashboard=> Languages=> String Translations and add string in your desired language.

    Note:
    * This will make promotion headline translatable.
    * Don’t forget to put custom promotion headline in Customizer.

    Let me know if any problem.

    If you are having much trouble working with the code, I recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: Menu questions #116918
    Mahesh
    Participant

    @smyo2017: For that, go to Dashboard=> Appearance=> Menu and add some Custom Links and put ‘#‘ in Url and desired title in Link text.

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Footer text change #116915
    Mahesh
    Participant

    @fastrak: Editing the footer content is one of the features of Pro version. I recommend you to upgrade to Pro version.

    Regards,
    Mahesh

    in reply to: Problems with theme update #116914
    Mahesh
    Participant

    @sziszi: Add the following CSS:

    .entry-meta .author.vcard, .entry-meta .last {
        display: none;
    }
    
    table tr td:nth-child(2) {
        padding-left: 10px;
    }

    Regards,
    Mahesh

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

    @rawikltd: I’ve changed the CSS so that it now applies to search page only. Please use the above CSS.

    Regards,
    Mahesh

    Mahesh
    Participant

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

    
    .slides-pagination a:hover, 
    .slides-pagination a.current {
        background-color: #fff000;
        color: #fff000;
    }
      
      .preloader .pre-bounce1, .preloader .pre-bounce2 {
      	background-color: #fff000;
      }
    

    Note: Please change the color as desired.

    Regards,
    Mahesh

    in reply to: featured widget content #116890
    Mahesh
    Participant

    @wolpertinger: Just to let you know that the bug has been fixed and the update has been released. Please update. Let me know if any problem.

    Regards,
    Mahesh

    Mahesh
    Participant

    @paedagogisches-zentrum: You can find the detail on how to create a child theme in the link below:
    https://catchthemes.com/blog/create-child-theme-wordpress/

    You must be very careful when creating the child theme. Any minor error in functions.php may break your website.

    Regards,
    Mahesh

    in reply to: Footer widget issue since update #116883
    Mahesh
    Participant

    @rodeboy: Yes, it does seem strange, but the CSS is from the plugin itself. Thank you for your appreciation.
    I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review? Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated.
    https://wordpress.org/support/theme/rock-star/reviews/#postform
    Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know.

    Regards,
    Mahesh

    in reply to: Make font size smaller in Jomsom Pro #116879
    Mahesh
    Participant

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

    body, button, input, select, textarea {
        font-size: 14px;
    }
    h2 {
        font-size: 27px;
    }
    

    Let me know if any problem. Please post in your site url.

    Regards,
    Mahesh

    in reply to: Featured image to side, not top, makes sloppy layout #116877
    Mahesh
    Participant

    @lizzie: The update is just released. You can update your copy of the theme. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Issue with drop down menu. #116875
    Mahesh
    Participant

    @fireflywebs: Add the following CSS:

    #masthead .wrapper {
        opacity: unset;
    }

    Its because of the following CSS:

    #masthead .wrapper {
        opacity: 0.9;
    }
    in reply to: featured widget content #116872
    Mahesh
    Participant

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

    Regards,
    Mahesh

    in reply to: Remove White or Grey Line under Footer Menu #116870
    Mahesh
    Participant

    @masterchess: Let me know if any problem.

    Regards,
    Mahesh

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

    @rawikltd: Add the following CSS:

    .search-results #primary .post.has-post-thumbnail.hentry {
        position: relative;
    }
    
    .search-results #primary .post.hentry.has-post-thumbnail .entry-header {
        position: absolute;
        top: -50px;
    }
    
    .search-results #primary .post.has-post-thumbnail.hentry .featured-image {
        margin-top: 60px;
    }

    Regards,
    Mahesh

    in reply to: Problems with theme update #116866
    Mahesh
    Participant

    @sziszi: Please add the following CSS:

    #main .entry-meta .entry-date {
      display: none;
    }
    
    .post .post-article {
      width: 95%;
    }

    Which one is the category? And please post in the url with table.

    Regards,
    Mahesh

    in reply to: Category Header pic #116818
    Mahesh
    Participant

    @crazychaosgmaial-com: Individual header image for individual post/page is featured in the theme, but not for category. If you want to have it for categories, you’ll need to customize the theme further. I recommend you to hire a customizer.

    For the post/page featured header image please check the theme instruction in the link below:
    https://catchthemes.com/theme-instructions/fabulous-fluid-pro/#header-image

    Regards,
    Mahesh

Viewing 20 posts - 421 through 440 (of 4,908 total)