Forum Replies Created

Viewing 20 posts - 1,361 through 1,380 (of 4,903 total)
  • Author
    Posts
  • in reply to: Background image>Scroll with Page>Mobile devices #110374
    Mahesh
    Participant

    @ronmaf: The issue seems to persist only on iphone, checking on other devices works fine. Here is a workaround for the iphone I found so far. So hope this will fix your issue.

    body.custom-background:before {
        content: "";
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -10;
        background: url('http://www.infocusphotographs.com/wp-content/uploads/2017/02/sophie-sollmann-100865.jpg') no-repeat center center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

    Regards,
    Mahesh

    in reply to: Malformed Comment box #110368
    Mahesh
    Participant

    @dschwartzer: Yes, sure, please provide me the credentials.

    Regards,
    Mahesh

    in reply to: Images disappear at logo slider and featured content zone #110367
    Mahesh
    Participant

    @herbertcodee: Just checked your site and the images are loading just fine. But the issue you are having seems to be because of the SSL.

    Regards,
    Mahesh

    in reply to: Header image height is messed up #110366
    Mahesh
    Participant

    @rawiley: Add the following CSS:

    @media screen and (max-width: 720px) {
        #masthead {
            background-size: contain;
            padding-top: 0;
        }
        #masthead .wrapper {
            min-height: 200px;
        }
    }

    Regards,
    Mahesh

    in reply to: Featured Slider – Remove text from images #110365
    Mahesh
    Participant

    @candat: Glad you’ve resolved it yourself. You can use the following CSS instead. Its the same though but modifying the theme’s files directly is not recommended as you’ll lose all the modifications as you update the theme. Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    #feature-slider .caption {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Width of the Main Content Area #110364
    Mahesh
    Participant

    @wastenvironmentwebsitegmail-com: Go to Dashboard=> Appearance=> Customzie=> Additional CSS box and add the following CSS:

    .wrapper {
        margin: 0 50px;
        width: auto;
    }


    @alvarez-fan
    : I recommend you to upgrade to Pro version of full-width content option. If you want it in the current theme you can use the CSS instead. Go to Dashboard=> Appearance=> Customzie=> Additional CSS box and add the following CSS:

    .no-sidebar.content-width #main {
        width: 100%;
    }

    Regards,
    Mahesh

    in reply to: Slider Image Size & font colours #110363
    Mahesh
    Participant

    @rodeboy: Sorry for the late reply. Please use the following code instead.

    @media screen and (max-width: 500px) {
          .header-image-slider {
      	      margin-top: 80px;
          }
      }

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Homepage navigation #110362
    Mahesh
    Participant

    @kimberlyds: Sorry for the late reply. Glad to know you’ve resolved the issue. And about the All Categories option, its already done and will be available on the next update.
    For thumbnail size resizing, you’ll need to do that with child theme and then only use Regenerate thumbnails. Hope you understand.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Modify Single-Post-Navigation #110360
    Mahesh
    Participant

    @robertk: You’ll need to create a child theme for this. You can find more details on creating child theme HERE. Then in your child theme’s functions.php add the following codes.

    function clean_magazine_post_navigation() {
    		$options	= clean_magazine_get_theme_options();
    
    		$disable_single_post_navigation = isset($options['disable_single_post_navigation']) ? $options['disable_single_post_navigation'] : 0;
    
    		if ( !$disable_single_post_navigation ) {
    			// Previous/next post navigation.
    			the_post_navigation( array(
    				'next_text' => '<span class="meta-nav" aria-hidden="true">' . __( 'Next &gt&gt', 'clean-magazine-pro' ) . '</span> ' .
    					'<span class="screen-reader-text">' . __( 'Next post:', 'clean-magazine-pro' ) . '</span> ' .
    					'<span class="post-title">%title</span>',
    				'prev_text' => '<span class="meta-nav" aria-hidden="true">' . __( '&lt&lt Previous', 'clean-magazine-pro' ) . '</span> ' .
    					'<span class="screen-reader-text">' . __( 'Previous post:', 'clean-magazine-pro' ) . '</span> ' .
    					'<span class="post-title">%title</span>',
    			) );
    		}
    	}

    Note: If you want to use German equivalent of Next and Previous, you can replace Next and Previous in the above code with your desired words.

    And about the other feature you’ve mentioned above, I recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: Page with recent Posts loses formatting #110359
    Mahesh
    Participant

    @kathigauss: Using excerpt will strip off all the html entities and allows only plain text, that is why all format is lost. Please use full content instead of excerpt. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Layout Options and select Show Full Content (No Featured Image) in Archive Content Layout option.

    Regards,
    Mahesh

    in reply to: Background image>Scroll with Page>Mobile devices #110358
    Mahesh
    Participant

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

    body.custom-background {
        background: url('http://www.infocusphotographs.com/wp-content/uploads/2017/02/sophie-sollmann-100865.jpg') no-repeat center center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Slider Text jumping under menu and logo on Homepage #110356
    Mahesh
    Participant

    @morneh15: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Featured Image not for Header! #110354
    Mahesh
    Participant

    @bodycontent: Go to Dashboard=> Appearance=> Customize=> Header Image and select Entire Site in Enable Featured Header Image on option. This will display same header image throughout your site.

    Regards,
    Mahesh

    in reply to: Removal of Date from page content #110353
    Mahesh
    Participant

    @infoyed: For that, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme, copy content-page.php file from the parent theme. Then remove the following block of codes.

    <div class="assistive-text">
        <?php echo catchkathmandu_page_post_meta(); ?>
    </div>

    Regards,
    Mahesh

    in reply to: Changing fonts in Rock Star free & premium versions? #110296
    Mahesh
    Participant

    @dwmotr1:
    1. Yes, you can change fonts, please use Custom CSS for this.

    2. You can use all the functions that are in your current child theme. You’ll just need to create a child theme for Pro version. (Copy the current child theme and just change the name and template to rock-star-pro).
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Huge blank areas on mobile page #110295
    Mahesh
    Participant

    @pushed: Are you using any plugin or have used any custom CSS or modified the theme? I checked the theme on your server and found no such issue. Please check on the demo and let me know if you find the same issue in demo too.
    https://catchthemes.com/demo/catch-responsive/
    Let me know further.

    Regards,
    Mahesh

    in reply to: Change main menu color on Catch evolution theme #110293
    Mahesh
    Participant

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

    #site-title a {
       color: #ff00ff;
    }
    
    #header-menu ul.menu a {
        color: #00ff00;
    }

    Note: Please use your desired color.

    Regards,
    Mahesh

    in reply to: how can I hide header photo from one page only? #110291
    Mahesh
    Participant

    @theproperva: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .blog #header-featured-image {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: how can I fix / freeze my navigation menu #110290
    Mahesh
    Participant

    @theproperva: Since Additional CSS function has been included in WordPress core from version 4.7, theme’s custom CSS has been removed but all your CSS are migrated automatically to Dashboard=> Appearance=> Customize=> Additional CSS box. Please use Additional CSS.
    Please add the following CSS:

    .nav-primary.search-enabled {
        position: fixed;
        width: 100%;
        top: 0;
    }
      
    .page {
        margin-top: 20px;
    }

    Regards,
    Mahesh

    in reply to: Images disappear at logo slider and featured content zone #110289
    Mahesh
    Participant

    @herbertcodee: Please post in your site url.

    Regards,
    Mahesh

Viewing 20 posts - 1,361 through 1,380 (of 4,903 total)