Forum Replies Created

Viewing 20 posts - 1,361 through 1,380 (of 4,908 total)
  • Author
    Posts
  • in reply to: Featured Image not for Header! #110388
    Mahesh
    Participant

    @bodycontest: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Child Theme #110387
    Mahesh
    Participant

    @bodycontest: All the steps you’ve carried out to make child theme are fine. But you cannot copy structure.php into child theme and modify it. It won’t work. This is not how child theme work. If you want to override the function, you’ll need to copy the very function to child theme’s functions.php and override it there.
    Hope you understand.

    Regards,
    Mahesh

    Mahesh
    Participant

    @thanaphat: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

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

    @morneh15: Add the following CSS:

    @media screen and (max-width: 1024px) {
        #slideshow {
        	margin-top: 160px;
        }
    }
      
    @media screen and (max-width: 767px) {
        #slideshow {
        	margin-top: 185px;
        }
    }

    Regards,
    Mahesh

    in reply to: WP News and Scrolling Widget Plugin won't show News in Mobile #110376
    Mahesh
    Participant

    @thanaphat: Please check the image in the url below:
    http://bit.ly/2lpGcq3
    Just seeing GRP News title and nothing. Same in the mobile too. Seems like a plugin issue.

    Regards,
    Mahesh

    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

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