Forum Replies Created
-
AuthorPosts
-
November 6, 2016 at 9:31 am in reply to: Lucida pro: switch position between date and site-description #102892
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,
MaheshMahesh
Member@testrup: Please go to Dashboard=> Appearance=> Widgets and add CT: Social Icons to the widget area you desire.
Regards,
MaheshMahesh
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,
MaheshMahesh
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,
MaheshMahesh
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,
MaheshMahesh
Member@phillycontemporary: I checked your site on Chrome browser and its working fine, may be cache problem.
Regards,
MaheshMahesh
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,
MaheshMahesh
Member@mjadkowskigmail-com:
Hi MarkHow 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,
MaheshMahesh
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,
MaheshNovember 4, 2016 at 9:55 am in reply to: Is it possible to create a post page and put the recent posts on the homepage? #102826Mahesh
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('← Older Posts'); ?></div> <div class="nav-next"><?php previous_posts_link('Newer Posts →'); ?></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('← 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,
MaheshMahesh
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,
MaheshMahesh
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,
MaheshMahesh
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,
MaheshMahesh
Member@phillycontemporary: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
.main-pagination { display: none; }Regards,
MaheshNovember 2, 2016 at 9:38 pm in reply to: button missing in featured content slider in iphone browser #102721Mahesh
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,
MaheshMahesh
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 -
AuthorPosts
