Forum Replies Created

Viewing 20 posts - 2,321 through 2,340 (of 4,888 total)
  • Author
    Posts
  • Mahesh
    Member

    @vagabundo: Replace the following lines

    <div class="wrapper">
        <?php
            if ( '' == $options['disable_date'] ) {
                lucida_date();
            }
    
            lucida_header_top_menu();
        ?>
    </div><!-- .wrapper -->

    with:

    <div class="wrapper">
        <?php
            echo '<h2 class="site-description">' . get_bloginfo( 'description' ) . '</h2>';
    
            lucida_header_top_menu();
        ?>
    </div><!-- .wrapper -->

    Hope this is what you mean.

    Regards,
    Mahesh

    in reply to: Missing Social Icons on frontpage? #102891
    Mahesh
    Member

    @testrup: Please go to Dashboard=> Appearance=> Widgets and add CT: Social Icons to the widget area you desire.

    Regards,
    Mahesh

    in reply to: stickey footer #102835
    Mahesh
    Member

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

    html, body {
        height: 100%;
    }
    
    #page, .site-inner {
        position: relative;
        min-height: 100%;
        height: 100%;
    }
    
    #colophon {
        position: absolute;
        bottom: 0;
        width: 100%;
    }

    Regards,
    Mahesh

    in reply to: Changing Menu color #102834
    Mahesh
    Member

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

    .main-navigation .current-menu-item > a, 
    .main-navigation .current-menu-ancestor > a, 
    .main-navigation li:hover > a, .main-navigation li.focus > a {
        color: #fff000;
    }

    Regards,
    Mahesh

    in reply to: Yoast Breadcrumbs #102833
    Mahesh
    Member

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

    .sidebar-before-content {
        margin-top: 31px;
        padding: 20px 0;
    }

    Regards,
    Mahesh

    in reply to: Remove 'Older posts' and 'Newer posts' links #102832
    Mahesh
    Member

    @phillycontemporary: I checked your site on Chrome browser and its working fine, may be cache problem.

    Regards,
    Mahesh

    in reply to: Slider Image Size & font colours #102831
    Mahesh
    Member

    @rodeboy: I just checked your theme:
    1. The recommended image for slider is 1920 x 1080 and its seems to be working fine. I guess you’ve managed to display the social icons on the slider too.
    2. Changing text color, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    /* Site title and description color */
    #site-details .site-title a, 
    #site-details .site-description {
        color: #00ffff;
    }
    /* Main slider title and text color */
    .main-slider .entry-title, 
    .main-slider .entry-title a, 
    .main-slider .entry-summary {
        color: #00ffff;
    }

    3. Change links from an underline to a different color for the text

    a {
        color: #00ffff;
    }

    Note: Please use your desired color.

    Regards,
    Mahesh

    in reply to: Not Getting Paid Support #102830
    Mahesh
    Member

    @mjadkowskigmail-com:
    Hi Mark

    How can I help you? What seems to be the problem? I checked your profile on the forum, and this is the only post you have in here.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Make header thinner #102829
    Mahesh
    Member

    @e-logan: Can you clarify more.

    Regards,
    Mahesh

    in reply to: Home page color #102828
    Mahesh
    Member

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

    #content {
        background-color: #ff00ff;
    }
    
    .panel-widget-style,
    .panel-row-style {
        background: none !important;
        border: none !important;
    }

    Note: Change the color as you desire.
    And you have used inline CSS for background color, please remove it.

    Regards,
    Mahesh

    Mahesh
    Member

    @valeska: For this, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme, create a new-file for page template, and add the following code:

    <?php
    /**
     * Template Name: My page
     *
     */
    
    get_header(); ?>
    
    	<main id="main" class="site-main" role="main">
    
    		<?php while ( have_posts() ) : the_post(); ?>
    
    			<?php get_template_part( 'content', 'page' ); ?>
    
    			<?php 
    				/** 
    				 * fullframe_comment_section hook
    				 *
    				 * @hooked fullframe_get_comment_section - 10
    				 */
    				do_action( 'fullframe_comment_section' ); 
    			?>
    
    		<?php endwhile; // end of the loop. ?>
    
    		<?php // Display blog posts on any page
    		$temp = $wp_query; $wp_query= null;
    		$wp_query = new WP_Query(); $wp_query->query('&paged='.$paged);
    		while ($wp_query->have_posts()) : $wp_query->the_post(); ?>
    
    		<?php
    			/* Include the Post-Format-specific template for the content.
    			 * If you want to override this in a child theme then include a file
    			 * called content-___.php (where ___ is the Post Format name) and that will be used instead.
    			 */
    			get_template_part( 'content', get_post_format() );
    		?>
    
    		<?php endwhile; ?>
    
    		<?php if ($paged > 1) { ?>
    
    		<nav id="nav-below" role="navigation">
            	<h3 class="screen-reader-text">Post navigation</h3>
            	<div class="nav-previous"><?php next_posts_link('&larr; Older Posts'); ?></div>
            	<div class="nav-next"><?php previous_posts_link('Newer Posts &rarr;'); ?></div>
            </nav>
    
    		<?php } else { ?>
    
    		<nav id="nav-below" role="navigation">
            	<h3 class="screen-reader-text">Post navigation</h3>
            	<div class="nav-previous"><?php next_posts_link('&larr; Older Posts'); ?></div>
            </nav>
    
    		<?php } ?>
    
    		<?php wp_reset_postdata(); ?>
    
    	</main><!-- #main -->
    
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    Then add a new page and select this custom template, then it will display the page content along with the recent posts.

    Note: Please make sure you have selected the very page as the static front page.

    Regards,
    Mahesh

    in reply to: Yoast Breadcrumbs #102773
    Mahesh
    Member

    @ejzohn: I checked your site, you’ve place the breadcrumb widget on the sidebar, not in before content. Where actually do you want to have it? Let me know further, so that I help you.

    Regards,
    Mahesh

    in reply to: remove slider arrows #102772
    Mahesh
    Member

    @flynne: Thank you for using Rock Star Pro theme. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .main-slider .controls,
    .main-slider #pager1 {
    	display: none;
    }

    Regards,
    Mahesh

    in reply to: Logo Appears Stretched in Mobile View #102771
    Mahesh
    Member

    @pete-guttenberggmail-com: I checked your site and seems, you’ve already fixed the problem by yourself. Its doesn’t stretch anymore. Let me know further.

    Regards,
    Mahesh

    in reply to: remove link from page title #102770
    Mahesh
    Member

    @ikh1: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Remove 'Older posts' and 'Newer posts' links #102769
    Mahesh
    Member

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

    .main-pagination {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: button missing in featured content slider in iphone browser #102721
    Mahesh
    Member

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

    @media screen and (max-width: 480px) {
        #feature-slider .entry-content {
    	font-size: 12px;
        }
      
        #feature-slider .entry-title {
    	font-size: 18px;
        }
    }

    Regards,
    Mahesh

    in reply to: Yoast Breadcrumbs #102720
    Mahesh
    Member

    @ejzohn: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Mobile menu not collapsed #102719
    Mahesh
    Member

    @suzitkd: I just checked your site on an android device and the menu is working just fine. Menu show/hide is working as it should. Same with the demo too.
    Let me know further.

    Regards,
    Mahesh

    in reply to: 2 thinks i need #102674
    Mahesh
    Member

    @ron66: Really sorry for the late reply. Add the following CSS and it will put the featured content to the center.

    #featured-content {
    	text-align: center;
    }
    
    #featured-content .hentry {
    	float: none;
    	display: inline-block;
    }

    Regards,
    Mahesh

Viewing 20 posts - 2,321 through 2,340 (of 4,888 total)