Forum Replies Created

Viewing 20 posts - 3,561 through 3,580 (of 4,116 total)
  • Author
    Posts
  • in reply to: Right Align Image in Footer to Copyright #122100
    tikaram
    Participant

    @jsilver : Go to Appearance => Customize => Theme Options => Footer Options and add the following under Footer Editor

    <div class="copyright">[footer-image] Copyright &copy; [the-year] <span>[site-link]</span>. All Right Reserved.
    </div> 
    <div class="powered"><img src ="https://arokismusic.org/wp-content/uploads/2017/09/comodo_secure_seal_76x26_transp.png"></div>

    Let me know if this resolves the issue.

    Regards,
    Tikaram

    in reply to: Footer Widget Spacing #122099
    tikaram
    Participant

    @umcchugiak : Thank you for contacting. The Update will be released in Couple of days. Sorry for the inconvenience.

    Regards,
    Tikaram

    in reply to: https ready #122093
    tikaram
    Participant

    @agescho: We will contact you shortly by email.

    Regards,
    Tikaram

    tikaram
    Participant

    Hello Karl,

    I hope I was able to resolve your issue. Would you mind taking a few minutes to write a review for me please?
    https://wordpress.org/support/theme/rock-star/reviews/#new-post
    I’d really love to know what you think of my support. Your feedback is deeply valued as it will help potential clients read about your experience and also help me improve.
    Thank you so much for your help!

    Regards,
    Tikaram

    in reply to: INCREASE FONT SIZE IN FEATURE CONTENT TEXT WIDGET #122089
    tikaram
    Participant

    @dbatty : First create a Page named Blog without any content. Next, Go to Appearance => Customize => Static Front Page
    Under Front page displays : Select A static page
    Under Posts page: Select Blog and save.

    Note: Your recent Posts will not appear on your homepage they will appear on Blog page only. Let me know if you need further assistance.

    Regards,
    Tikaram

    in reply to: Single Post Widget #122081
    tikaram
    Participant

    @mmhgloba : Go to Appearance => Customize => Additional css and add the following css.

    .featued-content-wrap .wp-post-image {
    	display: inline-block;
    }

    Let me know if you have any more issues.

    Regards,
    Tikaram

    in reply to: Disable Title on Pages #122080
    tikaram
    Participant

    @michaelinthenow : Please post in your site URL.

    Regards,
    Tikaram

    in reply to: No display courses #122076
    tikaram
    Participant

    @saschabahl : It looks like there is a small bug in the customizer preview, it will be fixed in next update. Please select all categories and test once. Make sure the category you select contains posts. The category that you have selected currently doesn’t contains any posts. Let me know if you have any further issues.

    Regards,
    Tikaram

    in reply to: Slider image at main page #122074
    tikaram
    Participant

    @kevinkang100 : Please go through the following theme instructions to know more about changing featured slider.
    https://catchthemes.com/theme-instructions/catch-responsive-pro/#featured-slider
    Let me know if you have any further issues.

    Regards,
    Tikaram

    in reply to: nav-menu margins #122071
    tikaram
    Participant

    @edilt : Go to Appearance => Customize => Additional css and add the following css.

    .nav-primary .wrapper {
    	text-align: center;
    }
    .clean-journal-nav-menu li {
    	width: auto;
    }

    Let me know if you need further assistance.

    Regards,
    Tikaram

    in reply to: Reduce body width. #122068
    tikaram
    Participant

    @bjbarker : Go to Appearance => Customize => Additional css and add the following css.

    @media only screen and (min-width: 990px) {
    .wrapper {
    	width: 1024px;
    }
    #main { width: 640px;
     }
    }

    Let me know if this resolves your issue or not.

    Regards,
    Tikaram

    in reply to: change color of sticky sidebar widget background #122064
    tikaram
    Participant

    @jomi : I checked your site and the issue is due to the plugin that you have used to make it sticky. The jQuery from the plugin is changing the color of the widget. Please contact Plugin support to fix the issue. It’s not a theme related issue. I will be happy to answer if you have any theme related issues on your site.

    Regards,
    Tikaram

    in reply to: Double image in Featured Content #122062
    tikaram
    Participant

    @togregor : Go to Appearance => Customize => Additional css and add the following css.

    #featured-post-3 .entry-content{
    	display: none;
    }

    Let me know if you need further assistance.

    Regards,
    Tikaram

    in reply to: INCREASE FONT SIZE IN FEATURE CONTENT TEXT WIDGET #122032
    tikaram
    Participant

    @dbatty : You can easily add featured content to your site from the customizer. According to your requirement you can add a featured page content and select the three pages Postcard, Blog and Subscribe. First you will need to create thee pages from WordPress admin and select them under Featured Page Content. While creating the pages you will need to add featured image for each page and the image will appear in featured content. Follow this link to learn more about adding featured content to your site. The images will also link to the pages when selected as featured content.

    Let me know if you need further assistance

    Regards,
    Tikaram

    in reply to: Change color of page titel #122018
    tikaram
    Participant

    @jomi : I have already replied to your query in the previous thread. Please follow the following link to find the solution.
    https://catchthemes.com/support-forum/topic/change-color-of-website-titel/

    Regards,
    Tikaram

    tikaram
    Participant

    @karl : To remove the dots add the following additional css.

    .header-image-slider .cycle-pager{
    	display: none;
    }

    Add the following code to the functions.php file of the child theme.

    function rock_star_featured_slider() {
    	global $post, $wp_query;
    	// get data value from options
    	$options             = rock_star_get_theme_options();
    	$enable_slider       = $options['featured_slider_option'];
    	$sliderselect        = $options['featured_slider_type'];
    	$enable_slidersocial = $options['featured_slider_enable_social_icons'];
    	$imageloader         = $options['featured_slider_image_loader'];
    
    	// Get Page ID outside Loop
    	$page_id = $wp_query->get_queried_object_id();
    
    	// Front page displays in Reading Settings
    	$page_on_front = get_option('page_on_front') ;
    	$page_for_posts = get_option('page_for_posts');
    
    	if ( 'entire-site' == $enable_slider  || ( ( is_front_page() || ( is_home() && $page_for_posts != $page_id ) ) && 'homepage' == $enable_slider  ) ) {
    		if ( ( !$output = get_transient( 'rock_star_featured_slider' ) ) ) {
    			echo '<!-- refreshing cache -->';
    			if ( $enable_slidersocial ) {
    				$sliderclass = "main-slider with-social sections";
    			}
    			else {
    				$sliderclass = "main-slider sections";
    			}
    			$output = '
    				<div class="' . $sliderclass . '">
    					<div class="wrapper">
    						<div class="cycle-slideshow"
    						    data-cycle-log="false"
    						    data-cycle-pause-on-hover="false"
    						    data-cycle-swipe="true"
    						    data-cycle-auto-height=container
    						    data-cycle-fx="'. esc_attr( $options['featured_slide_transition_effect'] ) .'"
    							data-cycle-speed="'. esc_attr( $options['featured_slide_transition_length'] ) * 1000 .'"
    							data-cycle-timeout="'. esc_attr( $options['featured_slide_transition_delay'] ) * 1000 .'"
    							data-cycle-loader="'. esc_attr( $imageloader ) .'"
    							data-cycle-slides="> article"
    							data-cycle-next="#next"
    							data-cycle-prev="#prev"
    							data-cycle-pager="#pager1"
    							>';
    
    							// Select Slider
    							if ( 'demo-featured-slider' == $sliderselect  && function_exists( 'rock_star_demo_slider' ) ) {
    								$output .=  rock_star_demo_slider( $options );
    							}
    							elseif ( 'featured-post-slider' == $sliderselect  && function_exists( 'rock_star_post_slider' ) ) {
    								$output .=  rock_star_post_slider( $options );
    							}
    							elseif ( 'featured-page-slider' == $sliderselect  && function_exists( 'rock_star_page_slider' ) ) {
    								$output .=  rock_star_page_slider( $options );
    							}
    							elseif ( 'featured-category-slider' == $sliderselect  && function_exists( 'rock_star_category_slider' ) ) {
    								$output .=  rock_star_category_slider( $options );
    							}
    							elseif ( 'featured-image-slider' == $sliderselect  && function_exists( 'rock_star_image_slider' ) ) {
    								$output .=  rock_star_image_slider( $options );
    							}
    
    						$output .= '
    						</div><!-- .cycle-slideshow -->
                            <div class="controls">
                                <div class="cycle-prev"><a href="#" id="prev"><span class="screen-reader-text">' . esc_html__( 'Previous Slide', 'rock-star-pro' ) . '</span></a></div><!-- .cycle-prev -->
                                <div class="cycle-next"><a href="#" id="next"><span class="screen-reader-text">' . esc_html__( 'Next Slide', 'rock-star-pro' ) . '</span></a></div><!-- .cycle-next -->
                            </div><!-- .controls -->
                            <div id="pager1" class="cycle-pager"></div><!-- .cycle-pager -->';
                        	if ( $enable_slidersocial ) {
    							$output .= rock_star_get_social_icons();
    						}
    					$output .= '
    					</div><!-- .wrapper -->
    				</div><!-- #feature-slider -->';
    
    			set_transient( 'rock_star_featured_slider', $output, 86940 );
    		}
    		echo $output;
    	}
    }

    To see your changes instantly you will need to clear the transient. To clear Transient : Go to customizer preview and make any change you like. After the transient is cleared the slider will not stop on Hover.
    Let me know if you need further assistance.

    Regards,
    Tikaram

    in reply to: Change height of featured slider and portfolio #122013
    tikaram
    Participant

    @retailored : Please post in your site URL.

    Regards,
    Tikaram

    in reply to: Building Real Estate Website #122011
    tikaram
    Participant

    @pete-guttenberggmail-com: It looks fine when I checked the site from my end. Please let me know if you have any more issues.

    Regards,
    Tikaram

    in reply to: INCREASE FONT SIZE IN FEATURE CONTENT TEXT WIDGET #122010
    tikaram
    Participant

    @dbatty : Its difficult for me to provide the css code without testing on your site. Please contact me when your site is viewable. Sorry for the inconvenience.

    Regards,
    Tikaram

    in reply to: Right Align Image in Footer to Copyright #122008
    tikaram
    Participant

    @jsilver : Can you please post the link of the image that you would like to display on the footer. I will provide you the code to insert in the footer editor.

    Regards,
    Tikaram

Viewing 20 posts - 3,561 through 3,580 (of 4,116 total)