Sonl Sinha

Forum Replies Created

Viewing 15 posts - 30,211 through 30,225 (of 31,015 total)
  • Author
    Posts
  • in reply to: Gravida Home Page #20731
    Sonl SinhaSonl Sinha
    Moderator
    • Topics: 0
    • Replies: 31015
    • Total: 31015
    Member since: August 16, 2013

    Hi Wesley,

    It is not a shortcode. It is css effect. You can use this effect for your post images also.

    Regards,
    Shri

    in reply to: girlie theme feature boxes #20730
    Sonl SinhaSonl Sinha
    Moderator
    • Topics: 0
    • Replies: 31015
    • Total: 31015
    Member since: August 16, 2013

    Hi Dean,

    Kindly go to Appearance>Theme Options>Basic Settings>Custom CSS box:
    Add this code in custom css box

    .slider-main{min-height:0;}

    Regards,
    Shri

    in reply to: Use Excerpts for Feature boxes #20729
    Sonl SinhaSonl Sinha
    Moderator
    • Topics: 0
    • Replies: 31015
    • Total: 31015
    Member since: August 16, 2013

    Welcome 🙂

    Regards,
    Shri

    in reply to: SKT Bakery #20728
    Sonl SinhaSonl Sinha
    Moderator
    • Topics: 0
    • Replies: 31015
    • Total: 31015
    Member since: August 16, 2013

    Hi Eva,

    Kindly show us your website link

    Regards,
    Shri

    in reply to: Add space above Menu Bar #20727
    Sonl SinhaSonl Sinha
    Moderator
    • Topics: 0
    • Replies: 31015
    • Total: 31015
    Member since: August 16, 2013

    Hi Jason,

    Kindly go to Appearance>Theme Options>Basic Settings>Custom CSS box:
    Add this css code in custom css box

    .header .header-inner .logo{margin-top:20px !important;}
    .header .header-inner .nav{margin-top:55px !important;}

    Regards,
    Shri

    in reply to: Nature One – Make it mobil friendly #20725
    Sonl SinhaSonl Sinha
    Moderator
    • Topics: 0
    • Replies: 31015
    • Total: 31015
    Member since: August 16, 2013

    Great 🙂

    Regards,
    Shri

    in reply to: Menu Hover #20660
    Sonl SinhaSonl Sinha
    Moderator
    • Topics: 0
    • Replies: 31015
    • Total: 31015
    Member since: August 16, 2013

    Hi Artis,

    Kindly go to Appearance>Theme Options>Basic Settings>Custom CSS box:
    Add this code in custom css box

    .header .header-inner .nav ul .current-menu-item a {background:#d94c00 !important;}

    Regards,
    Shri

    in reply to: Can't Install to Wordpress #20659
    Sonl SinhaSonl Sinha
    Moderator
    • Topics: 0
    • Replies: 31015
    • Total: 31015
    Member since: August 16, 2013

    Kindly Send us email: [email protected] with your WordPress admin details and URL of the site. we will check the problem and resolve.

    NOTE: Kindly mention the issue in the email.

    Regards,
    Shri

    in reply to: contact form #20658
    Sonl SinhaSonl Sinha
    Moderator
    • Topics: 0
    • Replies: 31015
    • Total: 31015
    Member since: August 16, 2013

    Kindly go to Appereance>>Theme Option>>Sections

    You will find the shortcode for contact form. Remove the shortcode.

    Regards,
    Shri

    in reply to: BeFit Pro Front page have to scroll to see content #20648
    Sonl SinhaSonl Sinha
    Moderator
    • Topics: 0
    • Replies: 31015
    • Total: 31015
    Member since: August 16, 2013

    Hi Ryan,

    Here is the code you need to remove from custom.js

    jQuery(window).scroll(function() {
    		jQuery('.services').each(function(){
    		var imagePos = jQuery(this).offset().top;
    
    		var topOfWindow = jQuery(window).scrollTop();
    			if (imagePos < topOfWindow+400) {
    				jQuery(this).addClass("fadeInLeft");
    			}
    		});
    		
    		jQuery('.about .one_half').each(function(){
    		var imagePos = jQuery(this).offset().top;
    
    		var topOfWindow = jQuery(window).scrollTop();
    			if (imagePos < topOfWindow+400) {
    				jQuery(this).addClass("fadeInUp");
    			}
    		});
    		
    		jQuery('.team-members').each(function(){
    		var imagePos = jQuery(this).offset().top;
    
    		var topOfWindow = jQuery(window).scrollTop();
    			if (imagePos < topOfWindow+400) {
    				jQuery(this).addClass("fadeInDown");
    			}
    		});
    		
    		
    		jQuery('.news-box').each(function(){
    		var imagePos = jQuery(this).offset().top;
    
    		var topOfWindow = jQuery(window).scrollTop();
    			if (imagePos < topOfWindow+400) {
    				jQuery(this).addClass("fadeInDown");
    			}
    		});
    		
    		jQuery('.testimonial-box').each(function(){
    		var imagePos = jQuery(this).offset().top;
    
    		var topOfWindow = jQuery(window).scrollTop();
    			if (imagePos < topOfWindow+400) {
    				jQuery(this).addClass("fadeInUp");
    			}
    		});
    		
    		jQuery('.stat').each(function(){
    		var imagePos = jQuery(this).offset().top;
    
    		var topOfWindow = jQuery(window).scrollTop();
    			if (imagePos < topOfWindow+400) {
    				jQuery(this).addClass("zoomInLeft");
    			}
    		});
    		
    		jQuery('.team-desc').each(function(){
    		var imagePos = jQuery(this).offset().top;
    
    		var topOfWindow = jQuery(window).scrollTop();
    			if (imagePos < topOfWindow+400) {
    				jQuery(this).addClass("fadeInLeft");
    			}
    		});
    		
    		jQuery('.team-div').each(function(){
    		var imagePos = jQuery(this).offset().top;
    
    		var topOfWindow = jQuery(window).scrollTop();
    			if (imagePos < topOfWindow+400) {
    				jQuery(this).addClass("fadeInRight");
    			}
    		});
    		
    		jQuery('.signup-newsletter').each(function(){
    		var imagePos = jQuery(this).offset().top;
    
    		var topOfWindow = jQuery(window).scrollTop();
    			if (imagePos < topOfWindow+400) {
    				jQuery(this).addClass("zoomIn");
    			}
    		});
    		
    	});
    

    When you finished with this kindly go to style.css and remove the visibility:hidden property from all the classes (.services, .about .one_half, .team-members, .news-box, .testimonial-box, .stat, .team-desc, .team-div, .signup-newsletter) i have mention all the classes where you need to remove the visibility:hidden property.

    Regards,
    Shri

    in reply to: Use Excerpts for Feature boxes #20645
    Sonl SinhaSonl Sinha
    Moderator
    • Topics: 0
    • Replies: 31015
    • Total: 31015
    Member since: August 16, 2013

    Hi Elizabeth,

    Kindly go to function.php and find this get_the_content

    replace it with this get_the_excerpt

    If you still having a issue with this let us know.

    Regards,
    Shri

    in reply to: naturo photo gallery #20644
    Sonl SinhaSonl Sinha
    Moderator
    • Topics: 0
    • Replies: 31015
    • Total: 31015
    Member since: August 16, 2013

    Kindly Send us email: [email protected] with your WordPress admin details and URL of the site. we will check the problem and resolve.

    NOTE: Kindly mention the issue in the email.

    Regards,
    Shri

    in reply to: How to put a video responsive from Youtube on the homepage #20641
    Sonl SinhaSonl Sinha
    Moderator
    • Topics: 0
    • Replies: 31015
    • Total: 31015
    Member since: August 16, 2013

    Hi Emma,

    The website link you provided above is invalid. Please provide the valid link.

    Regards,
    Shri

    in reply to: Editing Page #20639
    Sonl SinhaSonl Sinha
    Moderator
    • Topics: 0
    • Replies: 31015
    • Total: 31015
    Member since: August 16, 2013

    Hi Johann,

    Kindly go to Appereance>>Theme Option>>Sections>>Section 1
    You will find the section title “Welcome to wellness spa” and the text is in section content box.

    For the images in boxes: [services title=”Ayurveda Spa” icon=”http://localhost/skt-white/wp-content/themes/skt-spa-pro/images/ayurveda-spa.jpg” link=”#”]
    Kindly add images from Media Library and paste the URL in shortcode

    Regards,
    Shri

    in reply to: Customizing SPA theme #20638
    Sonl SinhaSonl Sinha
    Moderator
    • Topics: 0
    • Replies: 31015
    • Total: 31015
    Member since: August 16, 2013

    Hi Kathleen,

    For The Read More Buttons
    Kindly go to Appearance>Theme Options>Basic Settings>Custom CSS box:
    Add this css code in custom css box

    #services-box .read-more{background-color:#000000 !important;}
    #services-box:hover .read-more{background-color:#86cd65 !important;}

    For Background Color
    Add this code in custom css box

    .main-container{ background:#CCC;}

    For all other issues kindly Send us email: [email protected] with your WordPress admin details and URL of the site. we will check the problem and resolve.

    NOTE: Kindly mention the issue in the email.

    Regards,
    Shri

Viewing 15 posts - 30,211 through 30,225 (of 31,015 total)